Skip to main content

A Python interface for the Firmata procotol

Project description

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.3 and 3.4.

Test & coverage status:

https://travis-ci.org/tino/pyFirmata.png?branch=master https://coveralls.io/repos/github/tino/pyFirmata/badge.svg?branch=master

Installation

The preferred way to install is with pip:

pip install pyfirmata

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

git clone https://github.com/tino/pyFirmata
cd pyFirmata
python setup.py install

Usage

Basic usage:

>>> from pyfirmata import Arduino, util
>>> board = Arduino('/dev/tty.usbserial-A6008rIF')
>>> 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

The next things on my list are to implement the new protocol changes in firmata:

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

pyFirmata-1.1.0.tar.gz (14.4 kB view details)

Uploaded Source

Built Distribution

pyFirmata-1.1.0-py2.py3-none-any.whl (14.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pyFirmata-1.1.0.tar.gz.

File metadata

  • Download URL: pyFirmata-1.1.0.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.1

File hashes

Hashes for pyFirmata-1.1.0.tar.gz
Algorithm Hash digest
SHA256 cc180d1b30c85a2bbca62c15fef1b871db048cdcfa80959968356d97bd3ff08e
MD5 159673cfb56c72ceafc30fe91eedd847
BLAKE2b-256 ffe6512cc154c0370e22429db3139e7c906c4f8ad2646f4ca816547e9ae2c26c

See more details on using hashes here.

File details

Details for the file pyFirmata-1.1.0-py2.py3-none-any.whl.

File metadata

  • Download URL: pyFirmata-1.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.1

File hashes

Hashes for pyFirmata-1.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 03091ffd0b06a483d286d9738ead97a50c55cf1bf6b89a5bd0c420d0a7797420
MD5 22a4aed54ed8e4c52e2a8f8fcfdedb57
BLAKE2b-256 14f005e30c9cee38f9c0e8ef08a07ff28e4c391c7d95e2bcb1f334f58cc2bb28

See more details on using hashes here.

Supported by

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