2013-11-13 20:49:57 -08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-04-26 18:07:04 -07:00
|
|
|
"fmt"
|
2014-07-09 09:38:43 -07:00
|
|
|
"time"
|
|
|
|
|
2013-12-03 00:48:20 -08:00
|
|
|
"github.com/hybridgroup/gobot"
|
2014-05-22 21:20:16 -07:00
|
|
|
"github.com/hybridgroup/gobot/platforms/sphero"
|
2013-11-13 20:49:57 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-05-22 21:20:16 -07:00
|
|
|
gbot := gobot.NewGobot()
|
2013-11-13 20:49:57 -08:00
|
|
|
|
2014-05-22 21:20:16 -07:00
|
|
|
adaptor := sphero.NewSpheroAdaptor("Sphero", "/dev/rfcomm0")
|
|
|
|
spheroDriver := sphero.NewSpheroDriver(adaptor, "sphero")
|
2013-11-13 20:49:57 -08:00
|
|
|
|
|
|
|
work := func() {
|
2014-07-08 18:36:14 -07:00
|
|
|
gobot.On(spheroDriver.Event("collision"), func(data interface{}) {
|
2014-09-09 21:45:38 -06:00
|
|
|
fmt.Printf("Collision Detected! %+v\n", data)
|
2014-04-26 18:07:04 -07:00
|
|
|
})
|
|
|
|
|
2014-05-22 21:20:16 -07:00
|
|
|
gobot.Every(3*time.Second, func() {
|
2014-04-28 11:40:20 -07:00
|
|
|
spheroDriver.Roll(30, uint16(gobot.Rand(360)))
|
2014-04-26 18:07:04 -07:00
|
|
|
})
|
|
|
|
|
2014-05-22 21:20:16 -07:00
|
|
|
gobot.Every(1*time.Second, func() {
|
2014-04-26 18:07:04 -07:00
|
|
|
r := uint8(gobot.Rand(255))
|
|
|
|
g := uint8(gobot.Rand(255))
|
|
|
|
b := uint8(gobot.Rand(255))
|
2014-04-28 11:40:20 -07:00
|
|
|
spheroDriver.SetRGB(r, g, b)
|
2013-11-13 20:49:57 -08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-08 18:36:14 -07:00
|
|
|
robot := gobot.NewRobot("sphero",
|
|
|
|
[]gobot.Connection{adaptor},
|
|
|
|
[]gobot.Device{spheroDriver},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
|
|
|
gbot.AddRobot(robot)
|
2013-11-13 20:49:57 -08:00
|
|
|
|
2014-05-22 21:20:16 -07:00
|
|
|
gbot.Start()
|
2013-11-13 20:49:57 -08:00
|
|
|
}
|