36 lines
638 B
Go
36 lines
638 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/api"
|
|
"github.com/hybridgroup/gobot/platforms/pebble"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
a := api.NewAPI(gbot)
|
|
a.Port = "8080"
|
|
a.Start()
|
|
|
|
pebbleAdaptor := pebble.NewPebbleAdaptor("pebble")
|
|
pebbleDriver := pebble.NewPebbleDriver(pebbleAdaptor, "pebble")
|
|
|
|
work := func() {
|
|
gobot.On(pebbleDriver.Event("accel"), func(data interface{}) {
|
|
fmt.Println(data.(string))
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("pebble",
|
|
[]gobot.Connection{pebbleAdaptor},
|
|
[]gobot.Device{pebbleDriver},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|