Sysfs GPIO utility
Project description
trimarlib-sysfsgpio
Python GPIO library, using Linux sysfs interface.
Getting started
These instructions will get you a copy of the project on your local machine for development and testing purposes. See Deployment for notes on how to deploy the project on a live system.
Prerequisites
The build process requires some basic development tools:
make- GNU Make program, either for *nix or Windows system, used to execute build and test targetsgit- used not only to clone the repository, but also in auto-versioning (see Versioning)python3
Two standard Python packages are used for build and installation steps:
setuptoolswheel
The library has no dependencies on any third-party packages.
Building and releasing
Invoking make all (default target) prepares archives for distribution. It is done in two steps:
- query Git repository for tags (
git describecommand) to determine current version and generateversion.pyfile, - invoke Python interpreter passing
setup.pyscript to prepare source and wheel distributions.
The Python interpreter invoked by the Makefile defaults to python when running on Windows machine and
python3 otherwise. In both cases it is possible to override it passing a PYTHON variable to the command,
e.g. make all PYTHON=python3.
The release process is automated and based on GitLab CI/CD environment - each commit triggers a build job which attempts to make and install built packages (no testing implemented yet, requires an available hardware platform). If the commit is tagged the built wheel distribution is passed to the deployment stage and the runner attempts to upload the package to the repository specified in project settings.
Testing
Test source files are located in sysfsgpio/tests directory. Testing is based on unittest Python
built-in package. The Makefile defines test target which invokes all tests.
Testing is divided into two steps:
- utility functions testing - performs unit tests of all ancillary features. Those tests are platform independent (i.e. shall pass on either a *nix or a Windows machine);
Pintesting - performs unit tests ofPinclass. Those tests depend on thesysfsLinux filesystem and are skipped when running on Windows machine.
Deployment
The library is not intended to be used in a standalone configuration - the primary purpose is to be used
by higher-level applications, which should define it as a dependency. However it is perfectly correct
to install it manually using pip.
Please keep in mind that there are some platform dependent steps needed to be taken before the
pins are accessible without super-user privileges. The package designates 3 entry points (accessible
as command-line tools) to ease-up the set-up process (the scripts are developed and confirmed to be
working on Orange Pi platform running Armbian distribution). These entry points are:
sysfsgpio-install-service- this command installs and enablessystemdgpio-exporterservice, which exports all free pins available on the Orange Pi SBC at system boot;sysfsgpio-install-rules- this command installudevrules file which ensures that each exported pin hasrwmode available tostaffgroup;sysfsgpio-install- this one invokes the above to reduce number of commands needed to set-up system.
Each of the commands may be invoked with --force switch to overwrite existing files - without that
switch commands fail printing proper message.
NOTE: The user needs to become member of the
staffgroup to use the pins without super-user rights.
Versioning
The project is versioned using a simple pattern based on repository tagging feature. See Makefile for implementation details, for versions available see tags on this repository.
Usage
See docstrings for API documentation.
- Example of using pin PA21 as input:
from sysfsgpio import Pin
def callback(sender, value):
print('pin={}, value={}'.format(sender, value))
pin = Pin('PA21')
pin.direction = 'in'
pin.register_callback(callback)
pin.enabled = True
- Example of using pin PA20 as output:
from sysfsgpio import Pin
import time
pin = Pin('PA20')
pin.direction = 'out'
for i in range(10):
time.sleep(.1)
pin.value = pin.value ^ 1
- Example of using pin PA7 as inverted output to generate timed pulses:
from sysfsgpio import Pin
pin = Pin('PA20')
pin.direction = 'out'
pin.config(ontime=3.33, offtime=6.67, repeat=3)
pin.enable()
License
This software is licensed under the MIT License - see LICENSE.
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 Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file trimarlib_sysfsgpio-0.2.0rc1-py3-none-any.whl.
File metadata
- Download URL: trimarlib_sysfsgpio-0.2.0rc1-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ab59ae457742303d0d0e234f6167cb66345fa983127b8173f936d228ca9b4c0
|
|
| MD5 |
d14b418903f6ddc78aee86786b25278c
|
|
| BLAKE2b-256 |
d13cd5f70f579516a201a529db7d5c31838021aa32a3edbe14d5278cb68bbe3e
|