-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathController.cpp
430 lines (348 loc) · 8.48 KB
/
Controller.cpp
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/*
Controller.h - Library for controlling solar panels by rotating them.
Created by Raido Kalbre, July 4, 2012.
Licensed under GPL v3.
*/
#include "Arduino.h"
#include "Controller.h"
#include <EEPROM.h>
#include <Time.h>
#ifndef DS1307RTC_h
#include <DS1307RTC.h>
#endif
#define LEFT_BTN 2
#define RIGHT_BTN 3
#define LEFT_END 4
#define RIGHT_END 5
#define MOVE_LEFT 7
#define MOVE_RIGHT 8
// this array holds start, stop and rewind times
byte* _times;
// run interval, in seconds
unsigned long interval; // TODO: remove value
// lenght of one step, in milliseconds
unsigned long stepTime; // TODO: remove value
// time when current movement should end, in milliseconds
unsigned long endTime;
// for measuring how long current movement lasted
//unsigned long eventTime;
boolean left = false;
boolean right = false;
boolean leftEdge = false;
boolean rightEdge = false;
boolean leftBtn = false;
boolean rightBtn = false;
//int _leftOutputPin, _rightOutputPin, _leftEdgePin, _rightEdgePin, _leftButtonPin, _rightButtonPin;
Controller::Controller(byte *temp/*, int leftOutputPin, int rightOutputPin, int leftEdgePin, int rightEdgePin, int leftButtonPin, int rightButtonPin*/)
{
_times = temp;
// set pinmodes
pinMode(MOVE_LEFT, OUTPUT);
//digitalWrite(leftOutputPin, HIGH);
//_leftOutputPin = leftOutputPin;
pinMode(MOVE_RIGHT, OUTPUT);
//digitalWrite(rightOutputPin, HIGH);
//_rightOutputPin = rightOutputPin;
pinMode(LEFT_BTN, INPUT);
//_leftButtonPin = leftButtonPin;
pinMode(RIGHT_BTN, INPUT);
//_rightButtonPin = rightButtonPin;
pinMode(LEFT_END, INPUT);
//_leftEdgePin = leftEdgePin;
pinMode(RIGHT_END, INPUT);
//_rightEdgePin = rightEdgePin;
getInterval();
getStepSize();
}
boolean Controller::isMoving()
{
return !(left || right); // true only if not moving
}
void Controller::stop()
{
left = false;
right = false;
}
boolean Controller::runWithBlocking()
{
leftEdge = digitalRead(LEFT_END);
rightEdge = digitalRead(RIGHT_END);
leftBtn = digitalRead(LEFT_BTN);
rightBtn = digitalRead(RIGHT_BTN);
if (left)
{
if (leftEdge && millis() < endTime)
{
digitalWrite(MOVE_LEFT, HIGH);
}
else if (!leftBtn || !leftEdge) // if button isn't still pressed or has reached the end
{
digitalWrite(MOVE_LEFT, LOW);
left = false;
//eventTime = millis() - eventTime;
}
}
else if (right)
{
if (rightEdge && millis() < endTime)
{
digitalWrite(MOVE_RIGHT, HIGH);
}
else if (!rightBtn || !rightEdge) // if button isn't still pressed or has reached the end
{
digitalWrite(MOVE_RIGHT, LOW);
right = false;
//eventTime = millis() - eventTime;
}
}
/*else if (eventTime != 0)
{
Log.Debug("Last action time: %d ms", eventTime);
eventTime = 0;
}*/
else
{
if (leftBtn)
{
Log.Debug("Left button pressed");
moveLeft(25);
}
else if (rightBtn)
{
Log.Debug("Right button pressed");
moveRight(25);
}
}
return isMoving()/* && eventTime == 0*/;
}
void Controller::failMsg()
{
Log.Debug("Moving failed! Left: %T Right: %T LeftEdge: %T RightEdge: %T", left, right, leftEdge, rightEdge);
}
boolean Controller::moveLeft(int amount)
{
unsigned long time = stepTime * amount / 100;
stop();
Log.Debug("Moving left for %d ms", time);
if (!(left || right) && leftEdge)
{
left = true;
endTime = millis() + time;
//eventTime = millis();
return true;
}
failMsg();
return false;
}
boolean Controller::moveRight(int amount)
{
unsigned long time = stepTime * amount / 100;
stop();
Log.Debug("Moving right for %d ms", time);
if (!(left || right) && rightEdge)
{
right = true;
endTime = millis() + time;
//eventTime = millis();
return true;
}
failMsg();
return false;
}
//
// GETTERS
//
byte Controller::getProperty(int key)
{
return EEPROM.read(key);
}
int Controller::getPropertyWord(int key1, int key2)
{
int temp;
temp = EEPROM.read(key1) << 8;
return temp | EEPROM.read(key2);
}
byte* Controller::getTimes()
{
for (int i = 0, j = EE_START_H; j < EE_RUNTIME_VARS; i++, j++)
{
_times[i] = getProperty(i); // read from EEPROM
}
return _times;
}
String Controller::getStatus()
{
time_t t = now(); // save current time
char buffer[200];
sprintf(buffer, "{\"status\":%d,\"start\":\"%02d:%02d\",\"stop\":\"%02d:%02d\",\"rewind\":\"%02d:%02d\",\"date\":\"%02d.%02d.%u\",\"time\":\"%02d:%02d:%02d\",\"interval\":%u,\"step\":",
calculateProgress(),_times[0],_times[1],_times[2],_times[3],_times[4],_times[5],
day(t), month(t), year(t), hour(t), minute(t), second(t), interval); // max 16 arguments :(
String s = buffer;
s += stepTime;
s += "}";
return s;
}
long Controller::getInterval()
{
interval = getPropertyWord(EE_INTERVAL_H, EE_INTERVAL_L);
return interval;
}
long Controller::getStepSize()
{
stepTime = getPropertyWord(EE_STEP_TIME_H, EE_STEP_TIME_L);
return stepTime;
}
//
// SETTERS
//
boolean Controller::setTimes(String string)
{
if (string.length() < 12)
{
return false;
}
byte temp[6] = {0,0,0,0,0,0};
// parsing
for (int i = 0; i < 6; i++)
{
for (int j = 0; j < 2; j++)
{
temp[i] = 10 * temp[i] + string.charAt(2*i+j+1) - '0';
}
}
// saving
for (int i = 0, j = EE_START_H; j < EE_RUNTIME_VARS; i++, j++)
{
_times[i] = temp[i]; // save to the array
setProperty(j, temp[i]); // save to EEPROM
}
return true;
}
void Controller::setProperty(int key, byte value)
{
EEPROM.write(key, value);
}
void Controller::setPropertyWord(int key1, int key2, int value)
{
setProperty(key1, highByte(value));
setProperty(key2, lowByte(value));
}
void Controller::setTimestamp(unsigned long t)
{
if (t > 0)
{
#ifdef DS1307RTC_h
Serial.print("new timestamp:");
Serial.println(t);
RTC.set(t);
#endif
setTime(t);
}
}
void Controller::setInterval(long _interval)
{
interval = _interval;
setPropertyWord(EE_INTERVAL_H, EE_INTERVAL_L, _interval);
}
void Controller::setStepSize(long _stepSize)
{
stepTime = _stepSize;
setPropertyWord(EE_STEP_TIME_H, EE_STEP_TIME_L, _stepSize);
}
//
// UTILITY
//
time_t stringToTime(String str)
{
time_t pctime = 0;
for (int i = 0; i < str.length(); i++)
{
char c = str.charAt(i);
if( c >= '0' && c <= '9')
{
pctime = (10 * pctime) + (c - '0') ; // convert digits to a number
}
}
return pctime;
}
int Controller::calculateProgress()
{
int progress = 0; // return variable
time_t current = now(); // save current time
tmElements_t elements; // create start time for comparsion
breakTime(current, elements); // break time into elements
elements.Second = 0; // set set start time
elements.Hour = (int)*_times;
elements.Minute = (int)*(_times+1);
time_t start = makeTime(elements); // convert back to timestamp
if (current > start) // if the cycle has started today
{
elements.Hour = (unsigned int)*(_times+2); // reuse elements to create stop time timestamp
elements.Minute = (unsigned int)*(_times+3);
time_t stop = makeTime(elements); // make the timestamp
if (current < stop) {
progress = (current-start)*100/(stop-start); // calculate progress
}
else
{
progress = 100;
}
}
else
{
//breakTime(nextMidnight(current), elements); // lets make an elements object holding next day's date
elements.Hour = (unsigned int)*(_times+4); // set the rewind time
elements.Minute = (unsigned int)*(_times+5);
time_t rewind = makeTime(elements); // make the timestamp
if (current < rewind)
{
progress = 100;
}
}
return progress;
}
/*
* COMMAND CENTRE
*/
String Controller::doCommand(String string)
{
//Log.Debug("Command: %s", string);
String s = NULL;
int i = (int) stringToTime(string);
char command;
if (string.length() > 0)
{
command = string.charAt(0);
}
else
{
return s;
}
switch (command)
{
case 'A': // status request only
break;
case 'L': // move left
moveLeft(i);
break;
case 'R': // move right
moveRight(i);
break;
case 'I': // update interval
setInterval(i);
break;
case 'J': // update step size
setStepSize(i);
break;
case 'S': // update start/end/rewind times
setTimes(string);
break;
case 'T': // update date and time
setTimestamp(stringToTime(string));
break;
default: // returns NULL
return s;
}
s = getStatus();
return s;
}