Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 743 Bytes

README.rst

File metadata and controls

31 lines (19 loc) · 743 Bytes

apigpio

apigpio - an asyncio-based python client for pigpio

pigpio provides a very convenient pigpiod daemon which can be used through a pipe or socket interface to access GPIOs on the Raspberry Pi.

apigpio is a python client library that uses asyncio to access the pigpiod daemon. It's basically a (incomplete) port of the original python client provided with pigpio.

Installation

apigpio is available on Pypi and can be installed with pip:

pip install apigpio

To install it from sources: :

git clone https://github.com/PierreRust/apigpio.git cd apigpio python setup.py install

Usage

See the examples in the samples directory.