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() {
|
2016-10-16 02:02:54 +08:00
|
|
|
gbot := gobot.NewMaster()
|
2014-07-09 09:36:14 +08:00
|
|
|
|
2016-10-03 22:58:43 +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() {
|
2016-09-01 18:17:43 +08:00
|
|
|
stick.On(joystick.SquarePress, func(data interface{}) {
|
2014-04-28 09:02:39 +08:00
|
|
|
fmt.Println("square_press")
|
|
|
|
})
|
2016-09-01 18:17:43 +08:00
|
|
|
stick.On(joystick.SquareRelease, func(data interface{}) {
|
2014-04-28 09:02:39 +08:00
|
|
|
fmt.Println("square_release")
|
|
|
|
})
|
2016-09-01 18:17:43 +08:00
|
|
|
stick.On(joystick.TrianglePress, func(data interface{}) {
|
2014-04-28 09:02:39 +08:00
|
|
|
fmt.Println("triangle_press")
|
|
|
|
})
|
2016-09-01 18:17:43 +08:00
|
|
|
stick.On(joystick.TriangleRelease, func(data interface{}) {
|
2014-04-28 09:02:39 +08:00
|
|
|
fmt.Println("triangle_release")
|
|
|
|
})
|
2016-09-01 18:17:43 +08:00
|
|
|
stick.On(joystick.LeftX, func(data interface{}) {
|
2014-04-28 09:02:39 +08:00
|
|
|
fmt.Println("left_x", data)
|
|
|
|
})
|
2016-09-01 18:17:43 +08:00
|
|
|
stick.On(joystick.LeftY, func(data interface{}) {
|
2014-04-28 09:02:39 +08:00
|
|
|
fmt.Println("left_y", data)
|
|
|
|
})
|
2016-09-01 18:17:43 +08:00
|
|
|
stick.On(joystick.RightX, func(data interface{}) {
|
2014-04-28 09:02:39 +08:00
|
|
|
fmt.Println("right_x", data)
|
|
|
|
})
|
2016-09-01 18:17:43 +08:00
|
|
|
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},
|
2016-09-01 18:17:43 +08:00
|
|
|
[]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
|
|
|
}
|