hybridgroup.gobot/examples/leap_motion.go

32 lines
489 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
2014-04-28 08:43:15 +08:00
package main
import (
"fmt"
2014-07-11 08:21:21 +08:00
"gobot.io/x/gobot"
"gobot.io/x/gobot/platforms/leap"
2014-04-28 08:43:15 +08:00
)
func main() {
leapMotionAdaptor := leap.NewAdaptor("127.0.0.1:6437")
l := leap.NewDriver(leapMotionAdaptor)
2014-04-28 08:43:15 +08:00
work := func() {
l.On(leap.MessageEvent, func(data interface{}) {
2014-06-09 09:05:52 +08:00
fmt.Println(data.(leap.Frame))
2014-04-28 08:43:15 +08:00
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("leapBot",
[]gobot.Connection{leapMotionAdaptor},
[]gobot.Device{l},
work,
)
robot.Start()
2014-04-28 08:43:15 +08:00
}