Python Library – RPi.GPIO

library icon
Python RPi.GPIO library

Informatie (ENG):

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. This is because you can not predict when Python will be busy garbage collecting. It also runs under the Linux kernel which is not suitable for real time applications – it is multitasking O/S and another process may be given priority over the CPU, causing jitter in your program. If you are after true real-time performance and predictability, buy yourself an Arduino.

Note that the current release does not support SPI, I2C, hardware PWM or serial functionality on the RPi yet. This is planned for the near future – watch this space! One-wire functionality is also planned.

Although hardware PWM is not available yet, software PWM is available to use on all channels.

Gebruik

Om de bibliotheek te importeren gebruik deze regel:  import RPi.GPIO as GPIO

Instellen voor Broadcom SOC channel:  GPIO.setmode(GPIO.BCM)

Instellen voor Pin nummers:  GPIO.setmode(GPIO.BOARD)

Installatie via PIP

Installeer Rpi.GPIO met het commando:  pip install rpi.gpio

Installatie via Source (TAR.GZ)

 

Download RPi.GPI @ Sourceforge.net
Download RPi.GPIO @ pypi.python.org