hybridgroup.gobot/examples/firmata_blinkm.go

37 lines
711 B
Go
Raw Normal View History

package main
import (
"fmt"
2014-07-11 08:21:21 +08:00
"time"
"github.com/hybridgroup/gobot"
2014-05-23 10:22:14 +08:00
"github.com/hybridgroup/gobot/platforms/firmata"
"github.com/hybridgroup/gobot/platforms/i2c"
)
func main() {
2014-05-23 10:22:14 +08:00
gbot := gobot.NewGobot()
2014-07-09 09:36:14 +08:00
2014-05-23 10:22:14 +08:00
firmataAdaptor := firmata.NewFirmataAdaptor("firmata", "/dev/ttyACM0")
blinkm := i2c.NewBlinkMDriver(firmataAdaptor, "blinkm")
work := func() {
2014-05-23 10:22:14 +08:00
gobot.Every(3*time.Second, func() {
2014-06-07 09:58:04 +08:00
r := byte(gobot.Rand(255))
g := byte(gobot.Rand(255))
b := byte(gobot.Rand(255))
blinkm.Rgb(r, g, b)
fmt.Println("color", blinkm.Color())
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("blinkmBot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{blinkm},
work,
)
gbot.AddRobot(robot)
2014-05-23 10:22:14 +08:00
gbot.Start()
}