-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTurret.ino
289 lines (198 loc) · 5.78 KB
/
Turret.ino
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
#include <Servo.h>
#include <Adafruit_NeoPixel.h>
#define TILT_SERVO_PIN 2
#define PAN_SERVO_PIN 3
#define NEOPIXEL_PIN 4
#define NEOPIXEL_COUNT 1
#define PAN_LOWER_BOUNDS 10
#define PAN_UPPER_BOUNDS 140
#define TILT_LOWER_BOUNDS 10
#define TILT_UPPER_BOUNDS 140
Servo servoTilt, servoPan;
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NEOPIXEL_COUNT, NEOPIXEL_PIN, NEO_GRB + NEO_KHZ800);
const char COMMAND_BEGIN_CHAR = '<';
const char COMMAND_END_CHAR = '>';
const byte COMMAND_LENGTH = 32;
char receivedChars[COMMAND_LENGTH];
boolean newData = false;
char receivedNewData[COMMAND_LENGTH];
int panAmount = 20;
int tiltAmount = 20;
int actualPanAmount = 40;
int actualTiltAmount = 40;
float r = 0.0f;
float g = 0.0f;
float b = 0.0f;
float newR = 255.0f;
float newG = 255.0f;
float newB = 255.0f;
float changeSpeed = 1.0f;
int servoStepWait = 20;
void setup()
{
servoTilt.attach(TILT_SERVO_PIN); //The Tilt servo is attached to pin 2
servoPan.attach(PAN_SERVO_PIN); //The Pan servo is attached to pin 3
servoTilt.write(tiltAmount); //Initially position both servos to 25
servoPan.write(panAmount);
Serial.begin(9600);
pixels.begin();
}
void loop()
{
readSerial();
if (receivedNewData[0] != 0 && receivedNewData[1] != 0 && receivedNewData[2] != 0) {
// seperate the command from the parameter
char* command = strtok(receivedNewData, ":");
char* param = strtok(NULL, ":");
processCommand(command, param);
}
updateServos();
updateLED();
}
void updateServos() {
if (panAmount != actualPanAmount) {
if (panAmount > actualPanAmount)
actualPanAmount ++;
else
actualPanAmount --;
servoPan.write(actualPanAmount);
}
if (tiltAmount != actualTiltAmount) {
if (tiltAmount > actualTiltAmount)
actualTiltAmount ++;
else
actualTiltAmount --;
servoTilt.write(actualTiltAmount);
}
delay(servoStepWait);
}
void updateLED() {
if (r > newR)
r -= changeSpeed;
if (r < newR)
r += changeSpeed;
if (g > newG)
g -= changeSpeed;
if (g < newG)
g += changeSpeed;
if (b > newB)
b -= changeSpeed;
if (b < newB)
b += changeSpeed;
pixels.setPixelColor(0, pixels.Color(int(r), int(g), int(b)));
pixels.show();
}
void processCommand(char* command, char* param) {
if (strcmp(command, "panset") == 0) {
Serial.print("Pan Set: ");
panAmount = actualPanAmount = atoi(param);
servoPan.write(panAmount);
Serial.println(panAmount);
} else if (strcmp(command, "tiltset") == 0) {
Serial.print("Tilt Set: ");
tiltAmount = actualTiltAmount = atoi(param);
servoTilt.write(tiltAmount);
Serial.println(tiltAmount);
} else if (strcmp(command, "panleft") == 0) {
Serial.print("Pan Left: ");
panAmount -= atoi(param);
if (panAmount < PAN_LOWER_BOUNDS)
panAmount = PAN_LOWER_BOUNDS;
Serial.println(panAmount);
} else if (strcmp(command, "panright") == 0) {
Serial.print("Pan Right: ");
panAmount += atoi(param);
if (panAmount > PAN_UPPER_BOUNDS)
panAmount = PAN_UPPER_BOUNDS;
Serial.println(panAmount);
} else if (strcmp(command, "tiltup") == 0) {
Serial.print("Tilt Up: ");
tiltAmount -= atoi(param);
if (tiltAmount < TILT_LOWER_BOUNDS)
tiltAmount = TILT_LOWER_BOUNDS;
Serial.println(tiltAmount);
} else if (strcmp(command, "tiltdown") == 0) {
Serial.print("Tilt Down: ");
tiltAmount += atoi(param);
if (tiltAmount > TILT_UPPER_BOUNDS)
tiltAmount = TILT_UPPER_BOUNDS;
Serial.println(tiltAmount);
} else if (strcmp(command, "setr") == 0) {
Serial.print("Set LED R: ");
newR = atoi(param);
if (newR > 254)
newR = 254;
if (newR < 0)
newR = 0;
Serial.println(newR);
} else if (strcmp(command, "setg") == 0) {
Serial.print("Set LED G: ");
newG = atoi(param);
if (newG > 254)
newG = 254;
if (newG < 0)
newG = 0;
Serial.println(newG);
} else if (strcmp(command, "setb") == 0) {
Serial.print("Set LED B: ");
newB = atoi(param);
if (newB > 254)
newB = 254;
if (newB < 0)
newB = 0;
Serial.println(newB);
} else if (strcmp(command, "setledspeed") == 0) {
Serial.print("Set LED Change Speed: ");
changeSpeed = atoi(param);
if (changeSpeed > 10)
changeSpeed = 10;
if (changeSpeed < 0)
changeSpeed = 0;
Serial.println(changeSpeed);
} else if (strcmp(command, "setservospeed") == 0) {
Serial.print("Set Servo Move Speed: ");
servoStepWait = atoi(param);
if (servoStepWait > 500)
servoStepWait = 5000;
if (servoStepWait < 1)
servoStepWait = 1;
Serial.println(servoStepWait);
}
}
// commands should be in the format "<COMMAND:PARAMER>"
void readSerial() {
static boolean recvInProgress = false;
static byte ndx = 0;
char rc;
while (Serial.available() > 0 && newData == false) {
rc = Serial.read();
if (recvInProgress == true) {
if (rc != COMMAND_END_CHAR) {
receivedChars[ndx] = rc;
ndx++;
if (ndx >= COMMAND_LENGTH) {
ndx = COMMAND_LENGTH - 1;
}
} else {
receivedChars[ndx] = '\0'; // terminate the string
recvInProgress = false;
ndx = 0;
newData = true;
}
}
else if (rc == COMMAND_BEGIN_CHAR) {
recvInProgress = true;
}
}
if (newData == true) {
newData = false;
memcpy(
receivedNewData,
receivedChars,
COMMAND_LENGTH * sizeof(char));
} else {
receivedNewData[0] = 0;
receivedNewData[1] = 0;
receivedNewData[2] = 0;
}
}