hybridgroup.gobot/examples/ble_firmata_blink.go

43 lines
662 B
Go

// +build example
//
// Do not build by default.
/*
How to run
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()
}