45 lines
878 B
Go
45 lines
878 B
Go
/*
|
|
Package leap provides the Gobot adaptor and driver for the Leap Motion.
|
|
|
|
Installing:
|
|
|
|
* First install the [Leap Motion Software](https://www.leapmotion.com/setup).
|
|
* Then install the package:
|
|
|
|
go get gobot.io/x/gobot/platforms/leap
|
|
|
|
Example:
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gobot.io/x/gobot"
|
|
"gobot.io/x/gobot/platforms/leap"
|
|
)
|
|
|
|
func main() {
|
|
leapMotionAdaptor := leap.NewAdaptor("127.0.0.1:6437")
|
|
l := leap.NewDriver(leapMotionAdaptor)
|
|
|
|
work := func() {
|
|
l.On(l.Event("message"), func(data interface{}) {
|
|
fmt.Println(data.(leap.Frame))
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("leapBot",
|
|
[]gobot.Connection{leapMotionAdaptor},
|
|
[]gobot.Device{l},
|
|
work,
|
|
)
|
|
|
|
robot.Start()
|
|
}
|
|
|
|
For more information refer to the leap README:
|
|
https://gobot.io/x/gobot/blob/master/platforms/leap/README.md
|
|
*/
|
|
package leap // import "gobot.io/x/gobot/platforms/leap"
|