You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python interface for the Firmata (https://firmata.org/) protocol. It is compliant with Firmata 2.1. Any help with updating to 2.2 is welcome. The Capability Query is implemented, but the Pin State Query feature not yet.
pyFirmata 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 2.7, 3.6 and 3.7.
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.:
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
The next things on my list are to implement the new protocol changes in
firmata:
Python interface for the Firmata (https://firmata.org/) protocol. It is compliant with Firmata 2.1. Any help with updating to 2.2 is welcome. The Capability Query is implemented, but the Pin State Query feature not yet.