44 lines
838 B
Go
44 lines
838 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/drivers/i2c"
|
|
"github.com/hybridgroup/gobot/platforms/chip"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewMaster()
|
|
|
|
chipAdaptor := chip.NewAdaptor()
|
|
wiichuck := i2c.NewWiichuckDriver(chipAdaptor)
|
|
|
|
work := func() {
|
|
wiichuck.On(wiichuck.Event("joystick"), func(data interface{}) {
|
|
fmt.Println("joystick", data)
|
|
})
|
|
|
|
wiichuck.On(wiichuck.Event("c"), func(data interface{}) {
|
|
fmt.Println("c")
|
|
})
|
|
|
|
wiichuck.On(wiichuck.Event("z"), func(data interface{}) {
|
|
fmt.Println("z")
|
|
})
|
|
wiichuck.On(wiichuck.Event("error"), func(data interface{}) {
|
|
fmt.Println("Wiichuck error:", data)
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("chuck",
|
|
[]gobot.Connection{chipAdaptor},
|
|
[]gobot.Device{wiichuck},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|