hybridgroup.gobot/examples/jetson-nano_blink.go

35 lines
475 B
Go
Raw Normal View History

//go:build example
2022-10-23 07:41:22 +08:00
// +build example
2022-10-23 07:41:22 +08:00
//
// Do not build by default.
2021-08-01 14:27:57 +08:00
package main
import (
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/jetson"
2021-08-01 14:27:57 +08:00
)
func main() {
r := jetson.NewAdaptor()
led := gpio.NewLedDriver(r, "40")
work := func() {
gobot.Every(1*time.Second, func() {
led.Toggle()
})
}
robot := gobot.NewRobot("blinkBot",
[]gobot.Connection{r},
[]gobot.Device{led},
work,
)
robot.Start()
}