1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-13 19:29:10 +08:00

58 lines
1.4 KiB
Markdown
Raw Normal View History

2014-06-09 19:01:53 -07:00
# Firmata
2014-11-28 15: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-06 14:17:10 -05:00
This package provides the adaptor for microcontrollers such as Arduino that support the [Firmata](http://firmata.org/wiki/Main_Page) protocol
2014-11-28 15:34:42 -08:00
For more info about the arduino platform click [here](http://arduino.cc/).
## How to Install
2014-06-09 19:01:53 -07:00
```
2014-07-06 14:17:10 -05:00
go get github.com/hybridgroup/gobot && go install github.com/hybridgroup/gobot/platforms/firmata
2014-06-09 19:01:53 -07:00
```
2014-11-28 15:34:42 -08:00
## How to Use
```go
package main
import (
2014-07-10 17:02:00 -07:00
"time"
"github.com/hybridgroup/gobot"
2014-06-09 19:01:53 -07:00
"github.com/hybridgroup/gobot/platforms/firmata"
"github.com/hybridgroup/gobot/platforms/gpio"
)
func main() {
2014-06-09 19:01:53 -07:00
gbot := gobot.NewGobot()
2014-07-10 17:02:00 -07:00
firmataAdaptor := firmata.NewFirmataAdaptor("arduino", "/dev/ttyACM0")
led := gpio.NewLedDriver(firmataAdaptor, "led", "13")
work := func() {
2014-06-09 19:01:53 -07:00
gobot.Every(1*time.Second, func() {
led.Toggle()
})
}
2014-07-10 17:02:00 -07:00
robot := gobot.NewRobot("bot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{led},
work,
)
gbot.AddRobot(robot)
2014-06-09 19:01:53 -07:00
gbot.Start()
}
```
## 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-10 17:02:00 -07:00
More devices are coming soon...