30 lines
397 B
Go
30 lines
397 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"gobot.io/x/gobot"
|
||
|
"gobot.io/x/gobot/drivers/gpio"
|
||
|
"gobot.io/x/gobot/platforms/jetson"
|
||
|
)
|
||
|
|
||
|
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()
|
||
|
|
||
|
}
|