Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/umrninside/rpi.gpio
RPi.GPIO with experimental ARM64 support
https://github.com/umrninside/rpi.gpio
gpio raspberry-pi raspberry-pi-3 raspberrypi
Last synced: 3 months ago
JSON representation
RPi.GPIO with experimental ARM64 support
- Host: GitHub
- URL: https://github.com/umrninside/rpi.gpio
- Owner: UMRnInside
- License: mit
- Created: 2018-01-29T06:39:39.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-03T13:46:40.000Z (almost 6 years ago)
- Last Synced: 2023-11-14T14:47:14.047Z (about 1 year ago)
- Topics: gpio, raspberry-pi, raspberry-pi-3, raspberrypi
- Language: C
- Homepage:
- Size: 41 KB
- Stars: 7
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.txt
- Changelog: CHANGELOG.txt
Awesome Lists containing this project
README
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 http://www.arduino.cc !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.
For examples and documentation, visit http://sourceforge.net/p/raspberry-gpio-python/wiki/Home/