2016-08-30 23:53:29 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/firmata"
|
2016-09-01 19:32:40 +08:00
|
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
2016-08-30 23:53:29 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
gbot := gobot.NewGobot()
|
|
|
|
|
|
|
|
board := firmata.NewFirmataAdaptor("arduino", "/dev/ttyACM0")
|
|
|
|
led := gpio.NewRgbLedDriver(board, "led", "3", "5", "6")
|
|
|
|
|
|
|
|
work := func() {
|
|
|
|
gobot.Every(1*time.Second, func() {
|
|
|
|
r := uint8(gobot.Rand(255))
|
|
|
|
g := uint8(gobot.Rand(255))
|
|
|
|
b := uint8(gobot.Rand(255))
|
|
|
|
led.SetRGB(r, g, b)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("rgbBot",
|
|
|
|
[]gobot.Connection{board},
|
|
|
|
[]gobot.Device{led},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
|
|
|
|
gbot.Start()
|
|
|
|
}
|