hybridgroup.gobot/examples/raspi_blinkm.go

39 lines
611 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
2014-11-05 09:14:36 +08:00
package main
import (
"fmt"
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/i2c"
"gobot.io/x/gobot/platforms/raspi"
2014-11-05 09:14:36 +08:00
)
func main() {
r := raspi.NewAdaptor()
blinkm := i2c.NewBlinkMDriver(r)
2014-11-05 09:14:36 +08:00
work := func() {
gobot.Every(1*time.Second, func() {
2014-11-05 09:14:36 +08:00
r := byte(gobot.Rand(255))
g := byte(gobot.Rand(255))
b := byte(gobot.Rand(255))
blinkm.Rgb(r, g, b)
color, _ := blinkm.Color()
fmt.Println("color", color)
2014-11-05 09:14:36 +08:00
})
}
robot := gobot.NewRobot("blinkmBot",
[]gobot.Connection{r},
[]gobot.Device{blinkm},
work,
)
robot.Start()
2014-11-05 09:14:36 +08:00
}