2014-10-20 23:46:03 +08:00
|
|
|
/*
|
2014-10-29 05:52:59 +08:00
|
|
|
Package joystick provides the Gobot adaptor and drivers for game controllers that are compatible with SDL.
|
2014-10-20 23:46:03 +08:00
|
|
|
|
|
|
|
Installing:
|
|
|
|
|
|
|
|
This package requires `sdl2` to be installed on your system
|
|
|
|
Then install package with:
|
|
|
|
|
2014-10-29 05:52:59 +08:00
|
|
|
go get github.com/hybridgroup/gobot/platforms/joystick
|
2014-10-20 23:46:03 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/joystick"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-16 02:02:54 +08:00
|
|
|
gbot := gobot.NewMaster()
|
2014-10-20 23:46:03 +08:00
|
|
|
|
2016-09-26 03:07:36 +08:00
|
|
|
joystickAdaptor := joystick.NewAdaptor()
|
|
|
|
joystick := joystick.NewDriver(joystickAdaptor,
|
2014-10-20 23:46:03 +08:00
|
|
|
"./platforms/joystick/configs/dualshock3.json",
|
|
|
|
)
|
|
|
|
|
|
|
|
work := func() {
|
|
|
|
gobot.On(joystick.Event("square_press"), func(data interface{}) {
|
|
|
|
fmt.Println("square_press")
|
|
|
|
})
|
|
|
|
gobot.On(joystick.Event("square_release"), func(data interface{}) {
|
|
|
|
fmt.Println("square_release")
|
|
|
|
})
|
|
|
|
gobot.On(joystick.Event("triangle_press"), func(data interface{}) {
|
|
|
|
fmt.Println("triangle_press")
|
|
|
|
})
|
|
|
|
gobot.On(joystick.Event("triangle_release"), func(data interface{}) {
|
|
|
|
fmt.Println("triangle_release")
|
|
|
|
})
|
|
|
|
gobot.On(joystick.Event("left_x"), func(data interface{}) {
|
|
|
|
fmt.Println("left_x", data)
|
|
|
|
})
|
|
|
|
gobot.On(joystick.Event("left_y"), func(data interface{}) {
|
|
|
|
fmt.Println("left_y", data)
|
|
|
|
})
|
|
|
|
gobot.On(joystick.Event("right_x"), func(data interface{}) {
|
|
|
|
fmt.Println("right_x", data)
|
|
|
|
})
|
|
|
|
gobot.On(joystick.Event("right_y"), func(data interface{}) {
|
|
|
|
fmt.Println("right_y", data)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("joystickBot",
|
|
|
|
[]gobot.Connection{joystickAdaptor},
|
|
|
|
[]gobot.Device{joystick},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
|
|
|
|
gbot.Start()
|
|
|
|
}
|
|
|
|
|
|
|
|
For further information refer to joystick README:
|
|
|
|
https://github.com/hybridgroup/gobot/blob/master/platforms/joystick/README.md
|
|
|
|
*/
|
|
|
|
package joystick
|