2016-08-30 23:53:29 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/drivers/i2c"
|
|
|
|
"gobot.io/x/gobot/platforms/intel-iot/joule"
|
2016-08-30 23:53:29 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
e := joule.NewAdaptor()
|
2017-02-09 21:35:48 +08:00
|
|
|
blinkm := i2c.NewBlinkMDriver(e, i2c.Bus(0), i2c.Address(0x09))
|
2016-08-30 23:53:29 +08:00
|
|
|
|
|
|
|
work := func() {
|
2017-02-09 16:41:12 +08:00
|
|
|
gobot.Every(1*time.Second, func() {
|
2016-08-30 23:53:29 +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)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("blinkmBot",
|
|
|
|
[]gobot.Connection{e},
|
|
|
|
[]gobot.Device{blinkm},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
robot.Start()
|
2016-08-30 23:53:29 +08:00
|
|
|
}
|