//go:build example // +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 ( "fmt" "os" "time" "gobot.io/x/gobot/v2" "gobot.io/x/gobot/v2/drivers/gpio" "gobot.io/x/gobot/v2/platforms/firmata" ) func main() { firmataAdaptor := firmata.NewBLEAdaptor(os.Args[1]) led := gpio.NewLedDriver(firmataAdaptor, "13") work := func() { gobot.Every(1*time.Second, func() { if err := led.Toggle(); err != nil { fmt.Println(err) } }) } robot := gobot.NewRobot("bot", []gobot.Connection{firmataAdaptor}, []gobot.Device{led}, work, ) if err := robot.Start(); err != nil { panic(err) } }