37 lines
711 B
Go
37 lines
711 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/platforms/firmata"
|
|
"github.com/hybridgroup/gobot/platforms/i2c"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
|
|
firmataAdaptor := firmata.NewFirmataAdaptor("firmata", "/dev/ttyACM0")
|
|
blinkm := i2c.NewBlinkMDriver(firmataAdaptor, "blinkm")
|
|
|
|
work := func() {
|
|
gobot.Every(3*time.Second, func() {
|
|
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())
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("blinkmBot",
|
|
[]gobot.Connection{firmataAdaptor},
|
|
[]gobot.Device{blinkm},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
gbot.Start()
|
|
}
|