49 lines
922 B
Markdown
49 lines
922 B
Markdown
# Leap
|
|
|
|
This package provides the Gobot adaptor and driver for the [Leap Motion](https://www.leapmotion.com/)
|
|
|
|
## Getting Started
|
|
|
|
First install the [Leap Motion Software](https://www.leapmotion.com/setup)
|
|
|
|
Now you can install the package with
|
|
```
|
|
go get github.com/hybridgroup/gobot && go install github.com/hybridgroup/gobot/platforms/leap
|
|
```
|
|
|
|
## Example
|
|
|
|
```go
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/platforms/leap"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
|
|
leapMotionAdaptor := leap.NewLeapMotionAdaptor("leap", "127.0.0.1:6437")
|
|
l := leap.NewLeapMotionDriver(leapMotionAdaptor, "leap")
|
|
|
|
work := func() {
|
|
gobot.On(l.Event("message"), func(data interface{}) {
|
|
fmt.Println(data.(leap.Frame))
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("leapBot",
|
|
[]gobot.Connection{leapMotionAdaptor},
|
|
[]gobot.Device{l},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|
|
```
|