forked from hybridgroup/gobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ollie.go
206 lines (166 loc) · 4.84 KB
/
ollie.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package ble
import (
"bytes"
"fmt"
"time"
"github.com/hybridgroup/gobot"
)
var _ gobot.Driver = (*SpheroOllieDriver)(nil)
type SpheroOllieDriver struct {
name string
connection gobot.Connection
seq uint8
packetChannel chan *packet
gobot.Eventer
}
const (
// service IDs
SpheroBLEService = "22bb746f2bb075542d6f726568705327"
RobotControlService = "22bb746f2ba075542d6f726568705327"
// characteristic IDs
WakeCharacteristic = "22bb746f2bbf75542d6f726568705327"
TXPowerCharacteristic = "22bb746f2bb275542d6f726568705327"
AntiDosCharacteristic = "22bb746f2bbd75542d6f726568705327"
CommandsCharacteristic = "22bb746f2ba175542d6f726568705327"
ResponseCharacteristic = "22bb746f2ba675542d6f726568705327"
// gobot events
SensorData = "sensordata"
Collision = "collision"
Error = "error"
)
type packet struct {
header []uint8
body []uint8
checksum uint8
}
// NewSpheroOllieDriver creates a SpheroOllieDriver by name
func NewSpheroOllieDriver(a *BLEClientAdaptor, name string) *SpheroOllieDriver {
n := &SpheroOllieDriver{
name: name,
connection: a,
Eventer: gobot.NewEventer(),
packetChannel: make(chan *packet, 1024),
}
return n
}
func (b *SpheroOllieDriver) Connection() gobot.Connection { return b.connection }
func (b *SpheroOllieDriver) Name() string { return b.name }
// adaptor returns BLE adaptor
func (b *SpheroOllieDriver) adaptor() *BLEClientAdaptor {
return b.Connection().(*BLEClientAdaptor)
}
// Start tells driver to get ready to do work
func (s *SpheroOllieDriver) Start() (errs []error) {
s.Init()
// send commands
go func() {
for {
packet := <-s.packetChannel
err := s.write(packet)
if err != nil {
s.Publish(s.Event(Error), err)
}
}
}()
return
}
// Halt stops Ollie driver (void)
func (b *SpheroOllieDriver) Halt() (errs []error) {
b.Sleep()
time.Sleep(750 * time.Microsecond)
return
}
func (b *SpheroOllieDriver) Init() (err error) {
b.AntiDOSOff()
b.SetTXPower(7)
b.Wake()
// subscribe to Sphero response notifications
b.adaptor().Subscribe(RobotControlService, ResponseCharacteristic, b.HandleResponses)
return
}
// Turns off Anti-DOS code so we can control Ollie
func (b *SpheroOllieDriver) AntiDOSOff() (err error) {
str := "011i3"
buf := &bytes.Buffer{}
buf.WriteString(str)
err = b.adaptor().WriteCharacteristic(SpheroBLEService, AntiDosCharacteristic, buf.Bytes())
if err != nil {
fmt.Println("AntiDOSOff error:", err)
return err
}
return
}
// Wakes Ollie up so we can play
func (b *SpheroOllieDriver) Wake() (err error) {
buf := []byte{0x01}
err = b.adaptor().WriteCharacteristic(SpheroBLEService, WakeCharacteristic, buf)
if err != nil {
fmt.Println("Wake error:", err)
return err
}
return
}
// Sets transmit level
func (b *SpheroOllieDriver) SetTXPower(level int) (err error) {
buf := []byte{byte(level)}
err = b.adaptor().WriteCharacteristic(SpheroBLEService, TXPowerCharacteristic, buf)
if err != nil {
fmt.Println("SetTXLevel error:", err)
return err
}
return
}
// Handle responses returned from Ollie
func (b *SpheroOllieDriver) HandleResponses(data []byte, e error) {
fmt.Println("response data:", data)
return
}
// SetRGB sets the Ollie to the given r, g, and b values
func (s *SpheroOllieDriver) SetRGB(r uint8, g uint8, b uint8) {
s.packetChannel <- s.craftPacket([]uint8{r, g, b, 0x01}, 0x02, 0x20)
}
// Tells the Ollie to roll
func (s *SpheroOllieDriver) Roll(speed uint8, heading uint16) {
s.packetChannel <- s.craftPacket([]uint8{speed, uint8(heading >> 8), uint8(heading & 0xFF), 0x01}, 0x02, 0x30)
}
// Tells the Ollie to stop
func (s *SpheroOllieDriver) Stop() {
s.Roll(0, 0)
}
// Go to sleep
func (s *SpheroOllieDriver) Sleep() {
s.packetChannel <- s.craftPacket([]uint8{0x00, 0x00, 0x00, 0x00, 0x00}, 0x00, 0x22)
}
func (s *SpheroOllieDriver) EnableStopOnDisconnect() {
s.packetChannel <- s.craftPacket([]uint8{0x00, 0x00, 0x00, 0x01}, 0x02, 0x37)
}
func (s *SpheroOllieDriver) write(packet *packet) (err error) {
buf := append(packet.header, packet.body...)
buf = append(buf, packet.checksum)
err = s.adaptor().WriteCharacteristic(RobotControlService, CommandsCharacteristic, buf)
if err != nil {
fmt.Println("send command error:", err)
return err
}
s.seq++
return
}
func (s *SpheroOllieDriver) craftPacket(body []uint8, did byte, cid byte) *packet {
packet := new(packet)
packet.body = body
dlen := len(packet.body) + 1
packet.header = []uint8{0xFF, 0xFF, did, cid, s.seq, uint8(dlen)}
packet.checksum = s.calculateChecksum(packet)
return packet
}
func (s *SpheroOllieDriver) calculateChecksum(packet *packet) uint8 {
buf := append(packet.header, packet.body...)
return calculateChecksum(buf[2:])
}
func calculateChecksum(buf []byte) byte {
var calculatedChecksum uint16
for i := range buf {
calculatedChecksum += uint16(buf[i])
}
return uint8(^(calculatedChecksum % 256))
}