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

40 lines
631 B
Go
Raw Permalink Normal View History

//go:build example
// +build example
//
// Do not build by default.
2014-04-28 04:39:51 -07:00
package main
import (
"fmt"
2014-07-09 16:51:00 -07:00
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/beaglebone"
2014-04-28 04:39:51 -07:00
)
func main() {
beagleboneAdaptor := beaglebone.NewAdaptor()
led := gpio.NewLedDriver(beagleboneAdaptor, "P9_12")
2014-04-28 04:39:51 -07:00
work := func() {
2014-05-22 19:32:09 -07:00
gobot.Every(1*time.Second, func() {
if err := led.Toggle(); err != nil {
fmt.Println(err)
}
2014-04-28 04:39:51 -07:00
})
}
2014-07-08 18:36:14 -07:00
robot := gobot.NewRobot("blinkBot",
[]gobot.Connection{beagleboneAdaptor},
[]gobot.Device{led},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
2014-04-28 04:39:51 -07:00
}