2023-05-20 20:25:21 +08:00
|
|
|
//go:build example
|
2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
2023-05-20 20:25:21 +08:00
|
|
|
|
2017-03-13 23:01:39 +08:00
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2024-11-01 19:54:20 +08:00
|
|
|
//nolint:gosec // ok here
|
2016-07-11 02:28:20 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
2023-05-20 20:25:21 +08:00
|
|
|
"gobot.io/x/gobot/v2"
|
2024-02-05 01:50:43 +08:00
|
|
|
"gobot.io/x/gobot/v2/drivers/ble/sphero"
|
|
|
|
"gobot.io/x/gobot/v2/platforms/bleclient"
|
2016-07-11 02:28:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2024-02-05 01:50:43 +08:00
|
|
|
bleAdaptor := bleclient.NewAdaptor(os.Args[1])
|
|
|
|
ollie := sphero.NewOllieDriver(bleAdaptor)
|
2016-07-11 02:28:20 +08:00
|
|
|
|
|
|
|
work := func() {
|
|
|
|
ollie.SetRGB(255, 0, 255)
|
2016-07-11 02:37:58 +08:00
|
|
|
gobot.Every(3*time.Second, func() {
|
2016-07-12 13:47:19 +08:00
|
|
|
ollie.Roll(40, uint16(gobot.Rand(360)))
|
2016-07-11 02:28:20 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("ollieBot",
|
|
|
|
[]gobot.Connection{bleAdaptor},
|
|
|
|
[]gobot.Device{ollie},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2024-02-11 22:34:50 +08:00
|
|
|
if err := robot.Start(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2016-07-11 02:28:20 +08:00
|
|
|
}
|