41 lines
804 B
Go
41 lines
804 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()
|
|
api := api.NewAPI(gbot)
|
|
api.Port = "8080"
|
|
api.Start()
|
|
|
|
pebbleAdaptor := pebble.NewAdaptor()
|
|
pebbleDriver := pebble.NewDriver(pebbleAdaptor)
|
|
|
|
work := func() {
|
|
pebbleDriver.SendNotification("Hello Pebble!")
|
|
pebbleDriver.On(pebbleDriver.Event("button"), func(data interface{}) {
|
|
fmt.Println("Button pushed: " + data.(string))
|
|
})
|
|
|
|
pebbleDriver.On(pebbleDriver.Event("tap"), func(data interface{}) {
|
|
fmt.Println("Tap event detected")
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("pebble",
|
|
[]gobot.Connection{pebbleAdaptor},
|
|
[]gobot.Device{pebbleDriver},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|