raspberry-gpio-python Code
A Python module to control the GPIO on a Raspberry Pi
Brought to you by:
croston
File | Date | Author | Commit |
---|---|---|---|
RPi | 2012-02-06 |
![]() |
[752c9c] Initial version |
.hgignore | 2012-02-06 |
![]() |
[752c9c] Initial version |
CHANGELOG.txt | 2012-02-06 |
![]() |
[752c9c] Initial version |
INSTALL.txt | 2012-02-06 |
![]() |
[752c9c] Initial version |
LICENCE.txt | 2012-02-06 |
![]() |
[752c9c] Initial version |
README.txt | 2012-02-06 |
![]() |
[752c9c] Initial version |
distribute_setup.py | 2012-02-06 |
![]() |
[752c9c] Initial version |
setup.py | 2012-02-06 |
![]() |
[752c9c] Initial version |
This package provides a class to control the GPIO on a Raspberry Pi. Example Usage : :: import RPi.GPIO gpio = RPi.GPIO.GPIO() # set up the GPIO lines gpio.setup(0, RPi.GPIO.IN) gpio.setup(1, RPi.GPIO.OUT) # input from channel 0 input_value = gpio.input(0) # output to channel 1 gpio.output(1, True)