-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArduino.pde
180 lines (124 loc) · 3.21 KB
/
Arduino.pde
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
#include <EEPROM.h>
#include "Player.h"
#define TEAMID "t0"
Player players[6]; // Player array
char getChar() {
char res = 0;
char sign = 1;
while (Serial.available() > 0) {
char c = Serial.read();
if (c == '-')
sign = -1;
else {
if (c == ' ')
break;
res = res * 10 + c - '0';
}
}
res = sign * res;
return res;
}
byte getByte() {
byte res = 0;
while (Serial.available() > 0) {
char c = Serial.read();
if (c == ' ')
break;
res = res * 10 + c - '0';
}
return res;
}
// System setup
void setup(){
Serial.begin(115200); // Begin serial, 115kBaud
for(int i=0;i<6;i++){ // Player init
players[i]=Player(i);
players[i].transDestination=0;
players[i].transSpeed=0;
players[i].rotDestination=0;
players[i].rotSpeed=0;
}
}
char mode = '\0';
void update() {
for(int i=0;i<6;i++)
players[i].update(); // Uppdaterar styrsignal
}
// Main loop
void loop() {
if(Serial.available() > 0) { // Wait for message
delay(3); // Delay 3 ms
mode=Serial.read();
if(mode=='i'){ // Indetification Mode, In use ?!?!?
Serial.println(TEAMID);
}else if(mode=='c'){ // Command Mode
while(Serial.available() >= 5) { // Complete command?
byte pNumber=Serial.read();
byte transSpeed=Serial.read();
byte transDestination=Serial.read();
char rotSpeed=Serial.read();
byte rotDestination=Serial.read();
if(pNumber>=0&&pNumber<6){
players[pNumber].setState(transSpeed, transDestination, rotSpeed, rotDestination);
}
}
sendState();
update();
}else if(mode=='d'){
byte pNumber = getByte();
byte transSpeed = getByte();
byte transDestination = getByte();
char rotSpeed = getChar();
byte rotDestination = getByte();
Serial.print("Received d: ");
Serial.print(pNumber, DEC);
Serial.print('.');
Serial.print(transSpeed, DEC);
Serial.print('.');
Serial.print(transDestination, DEC);
Serial.print('.');
Serial.print(rotSpeed, DEC);
Serial.print('.');
Serial.println(rotDestination, DEC);
if (pNumber >=0 && pNumber < 6) {
Serial.println("Setting state...");
players[pNumber].setState(transSpeed, transDestination, rotSpeed, rotDestination);
}
} else if(mode=='a') {
if(Serial.available() >= 1) {
byte pNumber = getByte();
if (pNumber >=0 && pNumber < 6) {
players[pNumber].reset();
Serial.print("Calibrating player ");
Serial.print(pNumber);
Serial.println("...");
players[pNumber].calibrate();
players[pNumber].saveCalibration();
Serial.println("Done!");
}
} else {
for(int i=0;i<6;i++){
players[i].reset();
Serial.print("Calibrating player ");
Serial.print(i);
Serial.println("...");
players[i].calibrate();
players[i].saveCalibration();
Serial.println("Done!");
}
}
}
Serial.flush();
}
if (mode == 'd')
update();
}
void sendState(){ // Konstuerar ett meddelande och skickar det
int index = 0;
byte toSend[12];
for(int i=0;i<6;i++){
toSend[index++]=players[i].getTrans();
toSend[index++]=players[i].getRot();
}
Serial.write(toSend,12);
}