2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2016-07-11 02:28:20 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/platforms/ble"
|
|
|
|
"gobot.io/x/gobot/platforms/sphero/ollie"
|
2016-07-11 02:28:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
bleAdaptor := ble.NewClientAdaptor(os.Args[1])
|
2016-12-07 02:16:33 +08:00
|
|
|
ollie := ollie.NewDriver(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,
|
|
|
|
)
|
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
robot.Start()
|
2016-07-11 02:28:20 +08:00
|
|
|
}
|