2013-11-24 02:36:08 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2013-12-03 16:48:20 +08:00
|
|
|
"github.com/hybridgroup/gobot"
|
2014-04-26 18:11:51 +08:00
|
|
|
"github.com/hybridgroup/gobot/sphero"
|
2013-11-24 02:36:08 +08:00
|
|
|
)
|
|
|
|
|
2013-11-28 12:05:45 +08:00
|
|
|
var Master *gobot.Master = gobot.GobotMaster()
|
|
|
|
|
|
|
|
func TurnBlue(params map[string]interface{}) bool {
|
2013-11-28 12:35:32 +08:00
|
|
|
sphero := Master.FindRobotDevice(params["robotname"].(string), "sphero")
|
2013-11-28 12:05:45 +08:00
|
|
|
gobot.Call(sphero.Driver, "SetRGB", uint8(0), uint8(0), uint8(255))
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2013-11-24 02:36:08 +08:00
|
|
|
func main() {
|
2013-11-28 12:05:45 +08:00
|
|
|
gobot.Api(Master)
|
2013-11-25 06:56:13 +08:00
|
|
|
|
|
|
|
spheros := map[string]string{
|
2013-12-31 05:56:16 +08:00
|
|
|
"Sphero-BPO": "/dev/rfcomm0",
|
2013-11-25 06:56:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for name, port := range spheros {
|
2014-04-26 18:11:51 +08:00
|
|
|
spheroAdaptor := new(sphero.Adaptor)
|
2013-11-25 06:56:13 +08:00
|
|
|
spheroAdaptor.Name = "sphero"
|
|
|
|
spheroAdaptor.Port = port
|
|
|
|
|
2014-04-26 18:11:51 +08:00
|
|
|
sphero := sphero.NewSphero(spheroAdaptor)
|
2013-11-25 06:56:13 +08:00
|
|
|
sphero.Name = "sphero"
|
|
|
|
sphero.Interval = "0.5s"
|
|
|
|
|
|
|
|
work := func() {
|
|
|
|
sphero.SetRGB(uint8(255), uint8(0), uint8(0))
|
|
|
|
}
|
|
|
|
|
2014-04-17 06:54:39 +08:00
|
|
|
Master.Robots = append(Master.Robots, &gobot.Robot{
|
2013-11-25 06:56:13 +08:00
|
|
|
Name: name,
|
2013-12-31 05:56:16 +08:00
|
|
|
Connections: []gobot.Connection{spheroAdaptor},
|
|
|
|
Devices: []gobot.Device{sphero},
|
2013-11-25 06:56:13 +08:00
|
|
|
Work: work,
|
2013-11-28 12:05:45 +08:00
|
|
|
Commands: map[string]interface{}{"TurnBlue": TurnBlue},
|
2013-11-25 06:56:13 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2013-11-28 12:05:45 +08:00
|
|
|
Master.Start()
|
2013-11-24 02:36:08 +08:00
|
|
|
}
|