Fix #180 - Add support for pigpio

This commit is contained in:
Dave Jones
2016-02-08 23:36:44 +00:00
parent d8e1503b80
commit aebe42875d
7 changed files with 312 additions and 13 deletions

View File

@@ -32,6 +32,13 @@ class RPIOPin(Pin):
Pi 1's; the Raspberry Pi 2 Model B is *not* supported. Also note that
root access is required so scripts must typically be run with ``sudo``.
You can construct RPIO pins manually like so::
from gpiozero.pins.rpio import RPIOPin
from gpiozero import LED
led = LED(RPIOPin(12))
.. _RPIO: https://pythonhosted.org/RPIO/
"""