hybridgroup.gobot/examples/edison_blink.go

42 lines
682 B
Go
Raw Normal View History

//go:build example
// +build example
//
// Do not build by default.
package main
import (
"fmt"
"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() {
if err := led.Toggle(); err != nil {
fmt.Println(err)
}
})
}
robot := gobot.NewRobot("blinkBot",
[]gobot.Connection{e},
[]gobot.Device{led},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}