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

40 lines
581 B
Go
Raw Normal View History

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