Skip to main content

Use your Arduino as a data acquisition card

Project description

PyFirmata2 is an API which allows you to sample analogue and digital ports of your Arduino without writing any C code. Just upload the default firmata sketch into your Arduino and you are all set.

The Python API is fully compatible with Firmata 2.1, and has some functionality of version 2.2. It runs on Python 2.7, 3.3, 3.4, 3.5 and 3.6

pyFirmata2 is an updated version of pyFirmata where you can measure at a given sampling rate which then allows digital filtering, for example with a realtime IIR filter.

Installation

Upload firmata

Upload the standard firmata sketch into your Arduino with File -> Examples -> Firmata -> Standard Firmata.

Install pyfirmata

The preferred way to install is with pip:

pip3 install pyfirmata2

You can also install from source with python3 setup.py install. You will need to have setuptools installed:

git clone https://github.com/berndporr/pyFirmata2
cd pyFirmata2
python3 setup.py install

Usage

Initialisation

Specify the serial USB port in the constructor of the Arduino class:

>>> from pyfirmata import Arduino
>>> board = Arduino('/dev/ttyACM0')

Under Linux this is usually /dev/ttyACM0. Under Windows it is a com port, for example COM5.

Writing to a digital pin

Digital ports can be written to at any time:

>>> board.digital[13].write(1)

Starting sampling at a given sampling interval

In order to sample analoge data you need to specify a sampling interval in ms. The smallest reliable interval is 10ms.

>>> board.samplingOn(samplinginterval in ms)

Calling samplingOn() without its argument sets the sampling interval to 19ms.

Enabling and reading from individual analoge pins

To process the data at the given sampling interval register a callback handler and then enable it:

>>> board.analog[0].register_callback(myCallback)
>>> board.analog[0].enable_reporting()

where myCallback(data) is then called every time after data has been received and is timed by the arduino itself.

You can also read the analoge value of a port any time by issuing a read command:

>>> board.analog[0].enable_reporting()
>>> board.analog[0].read()
0.661440304938

If timing is not important you can use this approach in a loop. This is also useful for reading additional pins within a callback handler to process multiple pins simultaneously. Note that the data obtained by read() is read from an internal buffer which stores the most recent value received from the arduino.

If you use a pin more often, it can be worth using the get_pin method of the board. It lets 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)

Example code

The subdirectory examples (on github) contains a realtime Oscillsocope with realtime filtering, a digital port reader, the ubiquitous flashing LED program and a program which prints data using the callback handler.

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
...         }

Credits

The original pyFirmata has been written by Tino de Bruijn. The realtime sampling / callback has been added by Bernd Porr.

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

pyFirmata2-0.9.9.tar.gz (15.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyFirmata2-0.9.9-py3.6.egg (25.1 kB view details)

Uploaded Egg

pyFirmata2-0.9.9-py2.py3-none-any.whl (28.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pyFirmata2-0.9.9.tar.gz.

File metadata

  • Download URL: pyFirmata2-0.9.9.tar.gz
  • Upload date:
  • Size: 15.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for pyFirmata2-0.9.9.tar.gz
Algorithm Hash digest
SHA256 e61679456d79678f43e11f64cb191e1540b61fb60f4c895471719ef574ba54fe
MD5 d0ed309ad1ea8b9e099cb2530a638034
BLAKE2b-256 fd9d2fc0ade366403300aac85e18384756224d6b2047273aced9eb12e6fc3587

See more details on using hashes here.

File details

Details for the file pyFirmata2-0.9.9-py3.6.egg.

File metadata

  • Download URL: pyFirmata2-0.9.9-py3.6.egg
  • Upload date:
  • Size: 25.1 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for pyFirmata2-0.9.9-py3.6.egg
Algorithm Hash digest
SHA256 f15190acf2e7748d0897af912d0be719a0d712d21b74d59b6d12af2d73899a88
MD5 c8353d38d8b44d83c304a7dfc951fa3b
BLAKE2b-256 e1e3b6687376c62fd698f5e33ed3f677141503d1d67188b8a6cbc68469f76fb2

See more details on using hashes here.

File details

Details for the file pyFirmata2-0.9.9-py2.py3-none-any.whl.

File metadata

  • Download URL: pyFirmata2-0.9.9-py2.py3-none-any.whl
  • Upload date:
  • Size: 28.2 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for pyFirmata2-0.9.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b4f229940d1e1209478a0ad2e985269945c8a42ac460994592f09329bad01f61
MD5 8391f4d04215a6fb087282ff6dfce04f
BLAKE2b-256 04903e99dc18d19b9e86a40f33458938d35d874705ffff8b47238d7bfa488e86

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page