A Python GPIO library for the Rock64 single-board computer (RPi.GPIO clone).
R64.GPIO
A re-implementation of the RPi.GPIO library for the Rock64. Currently under development.
See the wiki for documentation on Functions and GPIO Modes.
R64-GPIO-test.py
A simple test script. Outputs a list of internal vars, sets the GPIO mode to "BOARD", sets up a GPIO output (blinks an LED if connected to pin 16), sets up a GPIO input (pulls-up and reports the state of pin 18), then cleans up all GPIO exports and exits.
Importing R64.GPIO
Below is the reccomended method for importing this library into your project. For alternate methods, see the Installation and Usage page in the wiki.
- Download the entire "R64" folder from the repo.
- Place the "R64" folder in the same directory as the Python script you're working with.
- Within your script, substitute the traditional "
import RPi.GPIO as GPIO
" line for "import R64.GPIO as GPIO
".
Once imported, syntax for implemented functions should be identical to RPi.GPIO.
All testing of this library is done on a Rock64 (1GB model) running Ayufan release 0.5.15 (Debian Jessie).
Compatability with other versions of Linux running on the Rock64 is not gauranteed.
List of resources and reference material used while building the scripts and libraries in this repository