The simplest Python interface for controlling pins on Arduino by using Firmata protocol.
This project aims to bring GPIO Zero's excellent Python interface from Raspberry Pi's to Arduinos, while making only minor adjustments that make sense in due to different hardware. This means that in some cases existing gpiozero code can work on Arduino by simply changing imports and pin numbers.
Firmatazero automatically detects Arduino's port and on default expects Arduino Uno, and is thread safe.
Blink example:
from firmatazero import LED
from time import sleep
led = LED(13) # 13 == LED_BUILTIN
while True:
led.on()
sleep(1)
led.off()
sleep(1)
Servo example:
from firmatazero import Servo
from time import sleep
servo = Servo(9)
while True:
servo.min()
sleep(1)
servo.mid()
sleep(1)
servo.max()
sleep(1)
Needless to say, this project is heavily inspired by GPIO Zero. This means that the project structure and docstrings are very related, even if the underlying code is different.
This project is build with pyFirmata2 and pySerial libraries.
Currently has very limited amount of devices. Used in botafar.com for making shareable, realtime global remote controls possible for robotics projects.
Python side:
pip install firmatazero --upgrade
Arduino side: on Arduino IDE select File > Examples > Firmata > StandardFirmata
.
Then select your board and port from Tools > Board
and Tools > Port
. Then press Upload
.
You can use GPIO Zero's docs, if you take changes intpo account:
Same as GPIO Zero's LED, except:
blink()
not implementedpin_factory
does not have an effect
Same as GPIO Zero's LED, except:
pin
parameter has a default value of 13, the buildin LEDblink()
function andactive_high
parameter not implementedpin_factory
does not have an effect
Same as GPIO Zero's Servo, except:
pin
parameter has a default value of 9, the pin used in Knob and Sweep examplesmin_pulse_width
andmax_pulse_width
have default values from Arduino Servo.h library, this means that most hobby servos move 180 degrees out of the boxdetach()
function not implemented, soServo.value = None
is not allowedpin_factory
does not have an effect
- detect_port() detects and returns the first Arduino port it finds, or raises RuntimeError
- set_port(port) allows skipping port autodetection, for example:
set_port("COM1")
- set_board(board) allows setting another pyFirmata2 board or settings compared to the default one, for example:
set_board(pyFirmata2.ArduinoMega("COM4"))
- get_board get pyFirmata2 board shared with all devices, to run some custom code with
Contributions are very welcome. Anything that makes this project to support more GPIO Zero's Devices are very welcome.