hybridgroup.gobot/platforms/firmata/README.md

148 lines
4.7 KiB
Markdown
Raw Normal View History

2014-06-10 10:01:53 +08:00
# Firmata
2014-11-29 07:34:42 +08:00
Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists and anyone interested in creating interactive objects or environments.
2014-07-07 03:17:10 +08:00
This package provides the adaptor for microcontrollers such as Arduino that support the [Firmata](http://firmata.org/wiki/Main_Page) protocol
2014-11-29 07:34:42 +08:00
For more info about the arduino platform click [here](http://arduino.cc/).
## How to Install
2014-06-10 10:01:53 +08:00
```
go get -d -u gobot.io/x/gobot/... && go install gobot.io/x/gobot/platforms/firmata
2014-06-10 10:01:53 +08:00
```
2014-11-29 07:34:42 +08:00
## How to Use
```go
package main
import (
2014-07-11 08:02:00 +08:00
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/firmata"
)
func main() {
firmataAdaptor := firmata.NewAdaptor("/dev/ttyACM0")
led := gpio.NewLedDriver(firmataAdaptor, "13")
2014-07-11 08:02:00 +08:00
work := func() {
2014-06-10 10:01:53 +08:00
gobot.Every(1*time.Second, func() {
led.Toggle()
})
}
2014-07-11 08:02:00 +08:00
robot := gobot.NewRobot("bot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{led},
work,
)
robot.Start()
}
```
2015-07-04 02:53:15 +08:00
Note that analog pins A4 and A5 are normally used by the Firmata I2C interface, so you will not be able to use them as analog inputs without changing the Firmata sketch.
2015-07-04 02:53:15 +08:00
## How to Connect
### Upload the Firmata Firmware to the Arduino
2015-07-04 05:18:08 +08:00
This section assumes you're using an Arduino Uno or another compatible board. If you already have the Firmata sketch installed, you can skip straight to the examples.
2015-07-04 02:53:15 +08:00
### OS X
First plug the Arduino into your computer via the USB/serial port.
A dialog box will appear telling you that a new network interface has been detected.
Click "Network Preferences...", and when it opens, simply click "Apply".
Once plugged in, use [Gort](http://gort.io)'s `gort scan serial` command to find out your connection info and serial port address:
```
$ gort scan serial
```
Use the `gort arduino install` command to install `avrdude`, this will allow you to upload firmata to the arduino:
```
$ gort arduino install
```
Once the avrdude uploader is installed we upload the firmata protocol to the arduino, use the arduino serial port address found when you ran `gort scan serial`:
```
$ gort arduino upload firmata /dev/tty.usbmodem1421
```
Now you are ready to connect and communicate with the Arduino using serial port connection
### Ubuntu
First plug the Arduino into your computer via the USB/serial port.
Once plugged in, use [Gort](http://gort.io)'s `gort scan serial` command to find out your connection info and serial port address:
```
$ gort scan serial
```
Use the `gort arduino install` command to install `avrdude`, this will allow you to upload firmata to the arduino:
```
$ gort arduino install
```
Once the avrdude uploader is installed we upload the firmata protocol to the arduino, use the arduino serial port address found when you ran `gort scan serial`, or leave it blank to use the default address `ttyACM0`:
```
$ gort arduino upload firmata /dev/ttyACM0
```
Now you are ready to connect and communicate with the Arduino using serial port connection
2015-07-04 05:18:08 +08:00
### Windows
First download and install gort for your OS from the [gort.io](gort.io) [downloads page](http://gort.io/documentation/getting_started/downloads/) and install it.
Open a command prompt window by right clicking on the start button and choose `Command Prompt (Admin)` (on windows 8.1). Then navigate to the folder where you uncompressed gort (uncomress to a folder first if you haven't done this yet).
Once inside the gort folder, first install avrdude which we'll use to upload firmata to the arduino.
```
$ gort arduino install
```
When the installation is complete, close the command prompt window and open a new one. We need to do this for the env variables to reload.
```
$ gort scan serial
```
Take note of your arduinos serialport address (COM1 | COM2 | COM3| etc). You need to already have installed the arduino drivers from [arduino.cc/en/Main/Software](https://www.arduino.cc/en/Main/Software). Finally upload the firmata protocol sketch to the arduino.
```
$ gort arduino upload firmata <COMX>
```
Make sure to substitute `<COMX>` with the apropiate serialport address.
Now you are ready to connect and communicate with the Arduino using serial port connection.
### Using arduino IDE
Open arduino IDE and go to File > Examples > Firmata > StandardFirmata and open it. Select the appriate port
for your arduino and click upload. Wait for the upload to finish and you should be ready to start using Gobot
with your arduino.
## Hardware Support
The following firmata devices have been tested and are currently supported:
- [Arduino uno r3](http://arduino.cc/en/Main/arduinoBoardUno)
- [Teensy 3.0](http://www.pjrc.com/store/teensy3.html)
2014-07-11 08:02:00 +08:00
More devices are coming soon...