hybridgroup.gobot/examples/edison_blink.go

37 lines
585 B
Go
Raw Normal View History

//go:build example
// +build example
//
// Do not build by default.
package main
import (
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/intel-iot/edison"
)
const boardType = "arduino" // "sparkfun" for a Sparkfun Edison board with the GPIO block
func main() {
e := edison.NewAdaptor(boardType)
led := gpio.NewLedDriver(e, "13")
work := func() {
gobot.Every(1*time.Second, func() {
led.Toggle()
})
}
robot := gobot.NewRobot("blinkBot",
[]gobot.Connection{e},
[]gobot.Device{led},
work,
)
robot.Start()
}