41 lines
780 B
Go
41 lines
780 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/platforms/firmata"
|
|
"github.com/hybridgroup/gobot/platforms/i2c"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
|
|
firmataAdaptor := firmata.NewFirmataAdaptor("firmata", "/dev/ttyACM0")
|
|
wiichuck := i2c.NewWiichuckDriver(firmataAdaptor, "wiichuck")
|
|
|
|
work := func() {
|
|
gobot.On(wiichuck.Event("joystick"), func(data interface{}) {
|
|
fmt.Println("joystick", data)
|
|
})
|
|
|
|
gobot.On(wiichuck.Event("c"), func(data interface{}) {
|
|
fmt.Println("c")
|
|
})
|
|
|
|
gobot.On(wiichuck.Event("z"), func(data interface{}) {
|
|
fmt.Println("z")
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("chuck",
|
|
[]gobot.Connection{firmataAdaptor},
|
|
[]gobot.Device{wiichuck},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|