hybridgroup.gobot/platforms/joystick/doc.go

68 lines
1.7 KiB
Go
Raw Normal View History

/*
2014-10-29 05:52:59 +08:00
Package joystick provides the Gobot adaptor and drivers for game controllers that are compatible with SDL.
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
Example:
package main
import (
"fmt"
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/platforms/joystick"
)
func main() {
joystickAdaptor := joystick.NewAdaptor()
joystick := joystick.NewDriver(joystickAdaptor,
"./platforms/joystick/configs/dualshock3.json",
)
work := func() {
2016-10-17 14:43:04 +08:00
joystick.On(joystick.Event("square_press"), func(data interface{}) {
fmt.Println("square_press")
})
2016-10-17 14:43:04 +08:00
joystick.On(joystick.Event("square_release"), func(data interface{}) {
fmt.Println("square_release")
})
2016-10-17 14:43:04 +08:00
joystick.On(joystick.Event("triangle_press"), func(data interface{}) {
fmt.Println("triangle_press")
})
2016-10-17 14:43:04 +08:00
joystick.On(joystick.Event("triangle_release"), func(data interface{}) {
fmt.Println("triangle_release")
})
2016-10-17 14:43:04 +08:00
joystick.On(joystick.Event("left_x"), func(data interface{}) {
fmt.Println("left_x", data)
})
2016-10-17 14:43:04 +08:00
joystick.On(joystick.Event("left_y"), func(data interface{}) {
fmt.Println("left_y", data)
})
2016-10-17 14:43:04 +08:00
joystick.On(joystick.Event("right_x"), func(data interface{}) {
fmt.Println("right_x", data)
})
2016-10-17 14:43:04 +08:00
joystick.On(joystick.Event("right_y"), func(data interface{}) {
fmt.Println("right_y", data)
})
}
robot := gobot.NewRobot("joystickBot",
[]gobot.Connection{joystickAdaptor},
[]gobot.Device{joystick},
work,
)
robot.Start()
}
For further information refer to joystick README:
https://github.com/hybridgroup/gobot/blob/master/platforms/joystick/README.md
*/
package joystick