mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-06 19:29:15 +08:00
38 lines
621 B
Go
38 lines
621 B
Go
![]() |
/*
|
||
|
To run this example, pass the BLE address or BLE name as first param:
|
||
|
|
||
|
go run examples/ble_firmata_blink.go FIRMATA
|
||
|
|
||
|
NOTE: sudo is required to use BLE in Linux
|
||
|
*/
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"time"
|
||
|
|
||
|
"gobot.io/x/gobot"
|
||
|
"gobot.io/x/gobot/drivers/gpio"
|
||
|
"gobot.io/x/gobot/platforms/firmata"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
firmataAdaptor := firmata.NewBLEAdaptor(os.Args[1])
|
||
|
led := gpio.NewLedDriver(firmataAdaptor, "13")
|
||
|
|
||
|
work := func() {
|
||
|
gobot.Every(1*time.Second, func() {
|
||
|
led.Toggle()
|
||
|
})
|
||
|
}
|
||
|
|
||
|
robot := gobot.NewRobot("bot",
|
||
|
[]gobot.Connection{firmataAdaptor},
|
||
|
[]gobot.Device{led},
|
||
|
work,
|
||
|
)
|
||
|
|
||
|
robot.Start()
|
||
|
}
|