hybridgroup.gobot/examples/raspi_blinkm.go

48 lines
777 B
Go
Raw Permalink Normal View History

//go:build example
// +build example
//
// Do not build by default.
2014-11-05 09:14:36 +08:00
package main
import (
"fmt"
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/i2c"
"gobot.io/x/gobot/v2/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))
if err := blinkm.Rgb(r, g, b); err != nil {
fmt.Println(err)
}
color, err := blinkm.Color()
if err != nil {
fmt.Println(err)
}
fmt.Println("color", color)
2014-11-05 09:14:36 +08:00
})
}
robot := gobot.NewRobot("blinkmBot",
[]gobot.Connection{r},
[]gobot.Device{blinkm},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
2014-11-05 09:14:36 +08:00
}