51 lines
781 B
Go
51 lines
781 B
Go
//go:build example
|
|
// +build example
|
|
|
|
//
|
|
// Do not build by default.
|
|
|
|
/*
|
|
How to run
|
|
Pass the Bluetooth address or name as the first param:
|
|
|
|
go run examples/bb8-collision.go BB-1234
|
|
|
|
NOTE: sudo is required to use BLE in Linux
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"gobot.io/x/gobot/v2"
|
|
"gobot.io/x/gobot/v2/platforms/ble"
|
|
"gobot.io/x/gobot/v2/platforms/sphero/bb8"
|
|
)
|
|
|
|
func main() {
|
|
bleAdaptor := ble.NewClientAdaptor(os.Args[1])
|
|
bb := bb8.NewDriver(bleAdaptor)
|
|
|
|
work := func() {
|
|
|
|
bb.On("collision", func(data interface{}) {
|
|
fmt.Printf("collision detected = %+v \n", data)
|
|
bb.SetRGB(255, 0, 0)
|
|
})
|
|
|
|
bb.SetRGB(0, 255, 0)
|
|
bb.Roll(80, 0)
|
|
}
|
|
|
|
robot := gobot.NewRobot("bb8",
|
|
[]gobot.Connection{bleAdaptor},
|
|
[]gobot.Device{bb},
|
|
work,
|
|
)
|
|
|
|
robot.Start()
|
|
|
|
}
|