1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/examples/edison_grove_led.go

33 lines
460 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
2015-07-09 11:50:39 -07:00
package main
import (
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/intel-iot/edison"
2015-07-09 11:50:39 -07:00
)
func main() {
e := edison.NewAdaptor()
led := gpio.NewGroveLedDriver(e, "4")
2015-07-09 11:50:39 -07:00
work := func() {
gobot.Every(1*time.Second, func() {
led.Toggle()
})
}
robot := gobot.NewRobot("blinkBot",
[]gobot.Connection{e},
[]gobot.Device{led},
work,
)
robot.Start()
2015-07-09 11:50:39 -07:00
}