hybridgroup.gobot/examples/joystick_ps3.go

46 lines
1.4 KiB
Go
Raw Normal View History

2014-04-28 09:02:39 +08:00
package main
import (
"fmt"
"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() {
2014-05-23 11:28:26 +08:00
gbot := gobot.NewGobot()
joystickAdaptor := joystick.NewJoystickAdaptor("ps3")
2014-06-09 09:01:22 +08:00
joystickDriver := joystick.NewJoystickDriver(joystickAdaptor, "ps3", "./platforms/joystick/configs/dualshock3.json")
2014-04-28 09:02:39 +08:00
work := func() {
gobot.On(joystickDriver.Events["square_press"], func(data interface{}) {
fmt.Println("square_press")
})
gobot.On(joystickDriver.Events["square_release"], func(data interface{}) {
fmt.Println("square_release")
})
gobot.On(joystickDriver.Events["triangle_press"], func(data interface{}) {
fmt.Println("triangle_press")
})
gobot.On(joystickDriver.Events["triangle_release"], func(data interface{}) {
fmt.Println("triangle_release")
})
gobot.On(joystickDriver.Events["left_x"], func(data interface{}) {
fmt.Println("left_x", data)
})
gobot.On(joystickDriver.Events["left_y"], func(data interface{}) {
fmt.Println("left_y", data)
})
gobot.On(joystickDriver.Events["right_x"], func(data interface{}) {
fmt.Println("right_x", data)
})
gobot.On(joystickDriver.Events["right_y"], func(data interface{}) {
fmt.Println("right_y", data)
})
}
2014-05-23 11:28:26 +08:00
gbot.Robots = append(gbot.Robots,
gobot.NewRobot("joystickBot", []gobot.Connection{joystickAdaptor}, []gobot.Device{joystickDriver}, work))
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
}