A Python interface for the Firmata procotol
Project description
arduPython is a Python interface for the Firmata protocol. It is fully compatible with Firmata 2.1, and has some functionality of version 2.2. It runs on Python 3.9 and 3.10.
Test & coverage status:
Installation
The preferred way to install is with pip:
pip install arduPython
You can also install from source with python setup.py install. You will need to have setuptools installed:
git clone https://github.com/BosonsHiggs/arduPython.git cd pyFirmata python setup.py install
Usage
Basic usage:
>>> from pyfirmata import Arduino, util >>> board = Arduino('/dev/tty.usbserial-A6008rIF') or board = Arduino() #New >>> board.digital[13].write(1)
To use analog ports, it is probably handy to start an iterator thread. Otherwise the board will keep sending data to your serial, until it overflows:
>>> it = util.Iterator(board) >>> it.start() >>> board.analog[0].enable_reporting() >>> board.analog[0].read() 0.661440304938
If you use a pin more often, it can be worth it to use the get_pin method of the board. It let’s you specify what pin you need by a string, composed of ‘a’ or ‘d’ (depending on wether you need an analog or digital pin), the pin number, and the mode (‘i’ for input, ‘o’ for output, ‘p’ for pwm). All seperated by :. Eg. a:0:i for analog 0 as input or d:3:p for digital pin 3 as pwm.:
>>> analog_0 = board.get_pin('a:0:i') >>> analog_0.read() 0.661440304938 >>> pin3 = board.get_pin('d:3:p') >>> pin3.write(0.6)
Board layout
If you want to use a board with a different layout than the standard Arduino or the Arduino Mega (for which there exist the shortcut classes pyfirmata.Arduino and pyfirmata.ArduinoMega), instantiate the Board class with a dictionary as the layout argument. This is the layout dict for the Mega for example:
>>> mega = { ... 'digital' : tuple(x for x in range(54)), ... 'analog' : tuple(x for x in range(16)), ... 'pwm' : tuple(x for x in range(2,14)), ... 'use_ports' : True, ... 'disabled' : (0, 1, 14, 15) # Rx, Tx, Crystal ... }
Todo
Fix
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
Built Distribution
File details
Details for the file arduPython-1.1.3.tar.gz
.
File metadata
- Download URL: arduPython-1.1.3.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1e35a6da6632ddf18fc1502dd2242398ad32efdb9426b2a2d3dfd6174cbe52c |
|
MD5 | 540ba3ed70cf491a0b46ed6a5298d352 |
|
BLAKE2b-256 | 656075139535c8494049f968515257037878c6340b8cd1372530e58136547b9e |
File details
Details for the file arduPython-1.1.3-py2.py3-none-any.whl
.
File metadata
- Download URL: arduPython-1.1.3-py2.py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 758963f206b9c84d1f01e3b24e78bc7ea7faa7f8d4ea341f82a211d884054c1a |
|
MD5 | 45b7bb9406c869cc3f3983c34558cda9 |
|
BLAKE2b-256 | e5c09c5c78525ee9d4fcef78888c2fd690a6f2fe0253a436e56703b09ad8ce12 |