2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2014-09-03 00:48:23 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/platforms/leap"
|
|
|
|
"gobot.io/x/gobot/platforms/sphero"
|
2014-09-03 00:48:23 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
leapAdaptor := leap.NewAdaptor("127.0.0.1:6437")
|
|
|
|
spheroAdaptor := sphero.NewAdaptor("/dev/tty.Sphero-YBW-RN-SPP")
|
2014-09-03 00:48:23 +08:00
|
|
|
|
2016-10-03 22:58:43 +08:00
|
|
|
leapDriver := leap.NewDriver(leapAdaptor)
|
|
|
|
spheroDriver := sphero.NewSpheroDriver(spheroAdaptor)
|
2014-09-03 00:48:23 +08:00
|
|
|
|
|
|
|
work := func() {
|
2016-09-01 18:17:43 +08:00
|
|
|
leapDriver.On(leap.MessageEvent, func(data interface{}) {
|
2014-09-03 00:48:23 +08:00
|
|
|
hands := data.(leap.Frame).Hands
|
|
|
|
|
|
|
|
if len(hands) > 0 {
|
|
|
|
x := math.Abs(hands[0].Direction[0])
|
|
|
|
y := math.Abs(hands[0].Direction[1])
|
|
|
|
z := math.Abs(hands[0].Direction[2])
|
|
|
|
spheroDriver.SetRGB(scale(x), scale(y), scale(z))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("leapBot",
|
|
|
|
[]gobot.Connection{leapAdaptor, spheroAdaptor},
|
|
|
|
[]gobot.Device{leapDriver, spheroDriver},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
robot.Start()
|
2014-09-03 00:48:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func scale(position float64) uint8 {
|
|
|
|
return uint8(gobot.ToScale(gobot.FromScale(position, 0, 1), 0, 255))
|
|
|
|
}
|