Extensive Arduino abstraction
Project description
pyduin
Pyduin is a Python wrapper for Arduino and other IOT devices such as ESP. It aims to support everything, that platformio supports. The following components are part of the package.
- A python library
- A firmware to be loaded onto the device
- A command-line interface (to flash the firmware)
What for?
Pyduin makes it easy to interact with an Arduino or other IOT device from within Python. Once a device has the correct firmware applied, one can set pin modes, pin states, pwm values and more.
This makes it easy to wire a sensor, switch to an IOT device, connect it to a computer and start working with the sensor values in Python. The library supports:
- Analog read and write (wip)
- Digital read and write
- OneWire
- DHT Sensors
- SPI
- ...
Device support
In theory, any device supported by platformio can work. Currently, the following devices are supported
- Arduino Uno
- Arduino Nano
Installation
pyduin module
Only pip
installs are available.
pip install pyduin
Dependency socat
Opening a serial connection resets most Arduinos. pyduin
circumvents this drawback with a socat
proxy.
To make meaningful use of the command-line features, the installation and usage of soact
is recommended. To activate usage, edit ~/.pyduin.yml
and set use_socat
to yes
(default).
serial:
use_socat: yes
If socat
is installed, a proxy will be started for every device that connections are made to. The pins get set up according to the pinfile and the initial modes get set on first connect. The following connections will not reset the Arduino. The proxy will stop safely on device disconnect. The proxy will also be stopped for flashing.
Usage
As python module
After installation the pyduin
module can be imported.
from pyduin import arduino
from pyduin import _utils as utils
board = 'nanoatmega328'
pinfile = utils.board_pinfile(board)
Arduino = arduino.Arduino(board=board,
tty='/dev/ttyUSB0',
pinfile=pinfile,
baudrate=115200,
wait=True)
Arduino.open_serial_connection()
print(Arduino.firmware_version)
Arduino.Pins[13].set_mode('OUTPUT')
Arduino.Pins[13].high()
print(Arduino.free_memory)
Command-line
The command-line interface provides a help page for all options and commands.
pyduin --help
Every positional argument that serves as a subcommand, has it's own help page.
pyduin firmware|pin|dependencies|versions --help
Most of the commands have shorter aliases. The following command sets the pwm value for pin 5 to 125.
pyduin --tty /dev/USB0 --baudrate 115200 --board nanoatmega328 pin 5 pwm 125
To connect to a device --tty
and --board
arguments are required.
The buddy list
The buddy-list feature allows one to define known devices aka buddies. In ~/.pyduin.yml
a dictionary of buddies can be declared.
buddies:
uber:
board: nanoatmega328 # as in platformio. required.
tty: /dev/uber # required
baudrate: 115200 # default derived from pinfile, optional
under:
board: uno
tty: /dev/ttyUSB0
The buddies can be used in the command line interface.
pyduin -B uber pin 13 high
Flashing firmware to the Arduino
pyduin --buddy uber firmware flash
It can also be done without the buddy list.
pyduin --board nanoatmega328 --tty=/dev/mytty fw f
Control the Arduinos pins
Using the command-line, the pins can be controlled as follows. The following command can be used to switch on and off digital pins.
pyduin --buddy uber pin 4 {high|low}
The pin mode can be set as follows
pyduin -B uber pin 4 mode {input|ouput|input_pullup,pwm}
Get firmware version from the Arduino
pyduin --buddy uber firmware version [device|available]
Get free memory from the Arduino
pyduin --buddy uber free
Contribute
mkdir pyduindev && cd !$
git git@github.com:SteffenKockel/pyduin.git
virtualenv .
. bin/activate
pip install -e .
Pull requests welcome.
Add device
Adding a device works, by editing the ~/.pyduin/platformio.ini
and and provide a pinfile
. These files and folders gets created, when attempting to flash firmware. Changes made here are preserved. A device must also provide a pinfile. The name of the pinfile should have the name of the corresponding board name (as in platformio).
When developing, the pinfile can just be added in the Repository structure. To test a pinfile while not in development mode, the -p
option can be used.
Project details
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
Hashes for pyduin-0.6.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2838bec0d60c556342b13f27e69661dcdb60bbb2d81558ddd61268b4c685e4de |
|
MD5 | 7bf4f5c797b565b1ac8ba31de643e1b1 |
|
BLAKE2b-256 | e9720ea831241cca0e27917285006d3aea23356097f7167e45e12037f63d21cc |