Skip to main content

A module 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.

Note that the current release does not support SPI, I2C or serial functionality on the RPi.

Example Usage :

import RPi.GPIO as GPIO

# set up the GPIO channels - one input and one output
GPIO.setup(11, GPIO.IN)
GPIO.setup(12, GPIO.OUT)

# input from pin 11
input_value = GPIO.input(11)

# output to pin 12
GPIO.output(12, True)

# the same script as above but using BCM GPIO 00..nn numbers
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.IN)
GPIO.setup(18, GPIO.OUT)
input_value = GPIO.input(17)
GPIO.output(18, True)

Change Log

0.2.0

  • Changed status from alpha to beta

  • Added setmode() to be able to use BCM GPIO 00.nn channel numbers

  • Renamed InvalidPinException to InvalidChannelException

0.1.0

  • Fixed direction bug

  • Added MANIFEST.in (to include missing file)

  • Changed GPIO channel number to pin number

  • Tested and working!

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


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.2.0.tar.gz (8.4 kB view details)

Uploaded Source

File details

Details for the file RPi.GPIO-0.2.0.tar.gz.

File metadata

  • Download URL: RPi.GPIO-0.2.0.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for RPi.GPIO-0.2.0.tar.gz
Algorithm Hash digest
SHA256 fcfd97dc9687dde76b13b9d12c122e71b13e2ba09a62913d7b8d9ddbb3e8cabf
MD5 0fc4bfa6aabc856b0b75252a40ac75cc
BLAKE2b-256 7e63a61e7b4e3dec52c4e6da0a1d9079ef6721ff0a0ba91346ad699e633bbd3e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page