A class to control Raspberry Pi GPIO channels
Project description
This package provides a class to control the GPIO on a Raspberry Pi.
Note that this module is unsuitable for real-time or timing critical applications.
Example Usage :
import RPi.GPIO as GPIO # set up the GPIO channels - one input and one output GPIO.setup(0, GPIO.IN) GPIO.setup(1, GPIO.OUT) # input from channel 0 input_value = GPIO.input(0) # output to channel 1 GPIO.output(1, True)
Change Log
0.0.3a
Added GPIO table
Refactored
Fixed a few critical bugs
Still completely untested!
0.0.2a
Internal refactoring. Still completely untested!
0.0.1a
First version. Completely untested until I can get hold of a Raspberry Pi!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
RPi.GPIO-0.0.3a.tar.gz
(3.0 kB
view hashes)