1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-01 13:48:57 +08:00
hybridgroup.gobot/platforms/i2c/wiichuck_driver.go

116 lines
2.7 KiB
Go
Raw Normal View History

2014-04-27 18:54:41 -07:00
package i2c
import (
"fmt"
"github.com/hybridgroup/gobot"
)
2014-04-27 18:54:41 -07:00
type WiichuckDriver struct {
gobot.Driver
joystick map[string]float64
data map[string]float64
}
2014-05-22 21:33:05 -07:00
func NewWiichuckDriver(a I2cInterface, name string) *WiichuckDriver {
2014-04-27 18:54:41 -07:00
return &WiichuckDriver{
Driver: gobot.Driver{
2014-05-22 21:33:05 -07:00
Name: name,
2014-06-11 11:37:20 -07:00
Events: map[string]*gobot.Event{
"z_button": gobot.NewEvent(),
"c_button": gobot.NewEvent(),
"joystick": gobot.NewEvent(),
2014-04-27 18:54:41 -07:00
},
Adaptor: a.(gobot.AdaptorInterface),
2014-04-27 18:54:41 -07:00
},
joystick: map[string]float64{
"sy_origin": -1,
"sx_origin": -1,
},
data: map[string]float64{
"sx": 0,
"sy": 0,
"z": 0,
"c": 0,
},
}
}
func (w *WiichuckDriver) adaptor() I2cInterface {
return w.Driver.Adaptor.(I2cInterface)
}
2014-04-27 18:54:41 -07:00
func (w *WiichuckDriver) Start() bool {
w.adaptor().I2cStart(0x52)
gobot.Every(w.Interval, func() {
w.adaptor().I2cWrite([]byte{0x40, 0x00})
w.adaptor().I2cWrite([]byte{0x00})
newValue := w.adaptor().I2cRead(6)
2014-06-10 15:16:11 -07:00
if len(newValue) == 6 {
w.update(newValue)
}
})
return true
}
2014-04-27 18:54:41 -07:00
func (w *WiichuckDriver) Init() bool { return true }
func (w *WiichuckDriver) Halt() bool { return true }
func (w *WiichuckDriver) update(value []byte) {
if w.isEncrypted(value) {
fmt.Println("Encrypted bytes from wii device!")
} else {
w.parse(value)
w.adjustOrigins()
w.updateButtons()
w.updateJoystick()
}
}
2014-06-10 15:16:11 -07:00
func (w *WiichuckDriver) setJoystickDefaultValue(joystickAxis string, defaultValue float64) {
if w.joystick[joystickAxis] == -1 {
w.joystick[joystickAxis] = defaultValue
}
}
2014-04-27 18:54:41 -07:00
func (w *WiichuckDriver) calculateJoystickValue(axis float64, origin float64) float64 {
return float64(axis - origin)
}
func (w *WiichuckDriver) isEncrypted(value []byte) bool {
if value[0] == value[1] && value[2] == value[3] && value[4] == value[5] {
return true
}
2014-06-10 15:16:11 -07:00
return false
}
func (w *WiichuckDriver) decode(x byte) float64 {
return float64((x ^ 0x17) + 0x17)
}
2014-04-27 18:54:41 -07:00
func (w *WiichuckDriver) adjustOrigins() {
w.setJoystickDefaultValue("sy_origin", w.data["sy"])
w.setJoystickDefaultValue("sx_origin", w.data["sx"])
}
2014-04-27 18:54:41 -07:00
func (w *WiichuckDriver) updateButtons() {
if w.data["c"] == 0 {
2014-04-27 18:54:41 -07:00
gobot.Publish(w.Events["c_button"], true)
}
if w.data["z"] == 0 {
2014-04-27 18:54:41 -07:00
gobot.Publish(w.Events["z_button"], true)
}
}
2014-04-27 18:54:41 -07:00
func (w *WiichuckDriver) updateJoystick() {
gobot.Publish(w.Events["joystick"], map[string]float64{
"x": w.calculateJoystickValue(w.data["sx"], w.joystick["sx_origin"]),
"y": w.calculateJoystickValue(w.data["sy"], w.joystick["sy_origin"]),
2014-04-27 18:54:41 -07:00
})
}
func (w *WiichuckDriver) parse(value []byte) {
w.data["sx"] = w.decode(value[0])
w.data["sy"] = w.decode(value[1])
w.data["z"] = float64(uint8(w.decode(value[5])) & 0x01)
w.data["c"] = float64(uint8(w.decode(value[5])) & 0x02)
}