libgpiod python ctypes binding
Project description
GPIO NEXT
This is a python ctypes binding for libgpiod.
It's time to switch from the GPIO sysfs interface to gpiod to the linux GPIO character device (gpiod, stands for GPIO device)
Since linux 4.8 the GPIO sysfs interface is deprecated. User space should use the character device instead. This library encapsulates the ioctl calls and data structures behind a straightforward API.
from kernel.org
Requirements
- libgpiod1
Install
sudo apt install libgpiod1
pip install gpio-next
Usage
- turn on/off an LED
import time
from gpio_next import Output
LED = Output(64, default_value=0)
for i in range(10):
LED.write(i & 1)
time.sleep(1)
- detect button events
from gpio_next import Input
button = Input(203)
for i in range(10):
print(button.wait())
print(button.read())
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
gpio-next-0.0.3.tar.gz
(4.6 kB
view details)
File details
Details for the file gpio-next-0.0.3.tar.gz
.
File metadata
- Download URL: gpio-next-0.0.3.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7959817927d16fb7c2668a06f18ea536bdec27d32d72ca37a3b20c8d6a50efe |
|
MD5 | 538d4e80ba8db1fc1baf91a415f5f4eb |
|
BLAKE2b-256 | e21cdd623219ffe5e63420494a7aa5e2550f68a415fb2506660851da1c703fdb |