1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-29 13:49:14 +08:00
hybridgroup.gobot/examples/joystick_ps3.go
2014-07-08 18:36:14 -07:00

52 lines
1.4 KiB
Go

package main
import (
"fmt"
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/platforms/joystick"
)
func main() {
gbot := gobot.NewGobot()
joystickAdaptor := joystick.NewJoystickAdaptor("ps3")
joystickDriver := joystick.NewJoystickDriver(joystickAdaptor, "ps3", "./platforms/joystick/configs/dualshock3.json")
work := func() {
gobot.On(joystickDriver.Event("square_press"), func(data interface{}) {
fmt.Println("square_press")
})
gobot.On(joystickDriver.Event("square_release"), func(data interface{}) {
fmt.Println("square_release")
})
gobot.On(joystickDriver.Event("triangle_press"), func(data interface{}) {
fmt.Println("triangle_press")
})
gobot.On(joystickDriver.Event("triangle_release"), func(data interface{}) {
fmt.Println("triangle_release")
})
gobot.On(joystickDriver.Event("left_x"), func(data interface{}) {
fmt.Println("left_x", data)
})
gobot.On(joystickDriver.Event("left_y"), func(data interface{}) {
fmt.Println("left_y", data)
})
gobot.On(joystickDriver.Event("right_x"), func(data interface{}) {
fmt.Println("right_x", data)
})
gobot.On(joystickDriver.Event("right_y"), func(data interface{}) {
fmt.Println("right_y", data)
})
}
robot := gobot.NewRobot("joystickBot",
[]gobot.Connection{joystickAdaptor},
[]gobot.Device{joystickDriver},
work,
)
gbot.AddRobot(robot)
gbot.Start()
}