hybridgroup.gobot/examples/joystick_ps3.go

55 lines
1.2 KiB
Go
Raw Normal View History

2014-04-28 09:02:39 +08:00
package main
import (
"fmt"
2014-07-11 08:21:21 +08:00
2014-04-28 09:02:39 +08:00
"github.com/hybridgroup/gobot"
2014-05-23 11:28:26 +08:00
"github.com/hybridgroup/gobot/platforms/joystick"
2014-04-28 09:02:39 +08:00
)
func main() {
gbot := gobot.NewMaster()
2014-07-09 09:36:14 +08:00
joystickAdaptor := joystick.NewAdaptor()
stick := joystick.NewDriver(joystickAdaptor,
2014-07-11 08:21:21 +08:00
"./platforms/joystick/configs/dualshock3.json",
)
2014-04-28 09:02:39 +08:00
work := func() {
stick.On(joystick.SquarePress, func(data interface{}) {
2014-04-28 09:02:39 +08:00
fmt.Println("square_press")
})
stick.On(joystick.SquareRelease, func(data interface{}) {
2014-04-28 09:02:39 +08:00
fmt.Println("square_release")
})
stick.On(joystick.TrianglePress, func(data interface{}) {
2014-04-28 09:02:39 +08:00
fmt.Println("triangle_press")
})
stick.On(joystick.TriangleRelease, func(data interface{}) {
2014-04-28 09:02:39 +08:00
fmt.Println("triangle_release")
})
stick.On(joystick.LeftX, func(data interface{}) {
2014-04-28 09:02:39 +08:00
fmt.Println("left_x", data)
})
stick.On(joystick.LeftY, func(data interface{}) {
2014-04-28 09:02:39 +08:00
fmt.Println("left_y", data)
})
stick.On(joystick.RightX, func(data interface{}) {
2014-04-28 09:02:39 +08:00
fmt.Println("right_x", data)
})
stick.On(joystick.RightY, func(data interface{}) {
2014-04-28 09:02:39 +08:00
fmt.Println("right_y", data)
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("joystickBot",
[]gobot.Connection{joystickAdaptor},
[]gobot.Device{stick},
2014-07-09 09:36:14 +08:00
work,
)
gbot.AddRobot(robot)
2014-04-28 09:02:39 +08:00
2014-05-23 11:28:26 +08:00
gbot.Start()
2014-04-28 09:02:39 +08:00
}