SmartArt - AD405 - Drew Browning
Firmata Examples (included in arduino IDE):
- StandardFirmata
- supports analog inputs, digital I/O, analog pins as digital I/O, PWM, and
servos.
- AnalogFirmata
- supports as many analog ports as possible, all analog inputs, four PWM
outputs, and two with servo support.
- ServoFirmata
- supports as many servos as possible using the Servo library
- SimpleAnalogFirmata
- supports as many analog inputs and analog PWM outputs as possible.
- SimpleDigitalFirmata
- supports as many digital inputs and outputs as possible.
Notes:
- With the
Simple examples, the data is
always sent from the Arduino.
- With StandardFirmata,
you can turn the sending of data on and off, so that you only get the data
that you want.
- Enable
the digital/analog input reporting with:
- [analogIns
0 0( pin#, value
- [digitalIns
0 0(
port#, value
- Ports are groups of pins: 0-7,
8-13 and analog pins 0-5
- Check
out the right side of arduino-test.pd for an example.