-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.c
454 lines (289 loc) · 9.14 KB
/
bot.c
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
int raftFound = false;
int numberCollector; // coleta numero do serial
byte serialNumber = 0; // guarda o numero em ASCII do serial
int opticCount = 3; // quantidade de garrafas
int parameterCount = 4; // contagem de parametros. nesse caso: posicao, tempo, numero de doses e quantas doses tem cada garrafa
int parameterSize = 3; // numero de digitos de cada parametro
int finish = false;
int drinkMatrix[3][4] = {
};
//The below is for the contact switch.
const int buttonPin = 13; // the pin that the pushbutton is attached to
int buttonState = 0; // current state of the button
int lastButtonState = 0; // previous state of the button
//----------------------
//The below is for the stepper motors
#include <AFMotor.h>
AF_Stepper motor1(48, 1);
AF_Stepper motor2(48, 2);
//---------------------
#include <SoftwareSerial.h>
SoftwareSerial mySerial(0,1);
// Below is for the RGB LED
int greenPin = 10;
int bluePin = A1;
int redPin = 9;
//---------------------
//The below are for running the machine:
int drinkRequested = false;
//---------------------
void setup() {
// for the contact switch
mySerial.begin(9600);
// initialize the button pin as a input:
pinMode(buttonPin, INPUT);
// initialize the LED as an output:
pinMode(LED_BUILTIN, OUTPUT);
// initialize serial communication:
Serial.begin(9600);
//--------------------------------
// For the stepper motors
motor1.setSpeed(600);
motor2.setSpeed(600);
//--------------------------------
// For LED
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
//-------------------------------
}
void CheckArray(){
//print out the array to check it:
for(int i = 0; i < opticCount; i++) {
for(int j = 0; j < 3; j++) {
Serial.print(drinkMatrix[i][j]);
Serial.print(",");
}
Serial.println();
}
}
void setColor(int red, int green, int blue)
{
#ifdef COMMON_ANODE
red = 255 - red;
green = 255 - green;
blue = 255 - blue;
#endif
analogWrite(redPin, red);
analogWrite(greenPin, green);
analogWrite(bluePin, blue);
}
#define NUM_ESTADOS 2
#define NUM_EVENTOS 5
//ESTADOS
enum ESTADO{
IDLE,
OCUPADO
};
// EVENTOS
enum EVENTOS{
RECEITA,
SBRECEITA,
CANCELA,
TERMINOU,
NENHUM_EVENTO
};
// ACOES
enum ACOES{
PREPARA,
RESETA,
VOLTA,
NENHUMA_ACAO
};
int codigoEvento;
int codigoAcao;
int estado;
int acao_matrizTransicaoEstados[NUM_ESTADOS][NUM_EVENTOS];
int proximo_estado_matrizTransicaoEstados[NUM_ESTADOS][NUM_EVENTOS];
void executarAcao(int codigoAcao) {
if (codigoAcao == NENHUMA_ACAO)
return;
switch(codigoAcao)
{
case RESETA:
//Lets find the location of the float:
if (raftFound == false){
Serial.println("Raft location not known yet");
setColor(255, 0, 0); // red
delay(1000);
Serial.print("Looking for the raft...");
buttonState = digitalRead(buttonPin); // read the pushbutton input pin:
//move the stepper until the contact switch is triggered
while(buttonState == LOW && raftFound == false){
motor1.step(10, FORWARD, SINGLE);
buttonState = digitalRead(buttonPin);
}
raftFound = true;
Serial.println("ahh! There it is. :)");
motor1.release();
setColor(0, 255, 0); // blue
delay(700); // Delay a little bit to calm everything down
}
break;
case PREPARA:
for (int optic = 0; optic < opticCount; optic++) {
//Move to pump
motor1.step((drinkMatrix[optic][0] * 10), FORWARD, SINGLE); //move the paddle according to instruciton, x10 to allow us to compress serial data transfer length
motor1.release(); // let the motor's magnets relax
//dispense what is required then resume moving to the next position:
while(drinkMatrix[optic][2] > 0 && raftFound == true){
delay(500);
motor2.step(2100, FORWARD, DOUBLE);
delay((drinkMatrix[optic][1]) * 100);
motor2.step(2100, BACKWARD, DOUBLE);
motor2.release();
drinkMatrix[optic][3] = drinkMatrix[optic][3]-1;
drinkMatrix[optic][2] = drinkMatrix[optic][2]-1;
delay(500);
}
}
//Drink complete
Serial.println("Drinks ready, enjoy.");
setColor(0, 0, 255); // green
finish=true;
break;
case VOLTA:
drinkRequested = false;
raftFound = false;
if (raftFound == false){
Serial.println("Raft location not known yet");
setColor(255, 0, 0); // red
delay(1000);
Serial.print("Looking for the raft...");
buttonState = digitalRead(buttonPin); // read the pushbutton input pin:
//move the stepper until the contact switch is triggered
while(buttonState == LOW && raftFound == false){
motor1.step(10, FORWARD, SINGLE);
buttonState = digitalRead(buttonPin);
}
raftFound = true;
Serial.println("ahh! There it is. :)");
motor1.release();
setColor(0, 255, 0); // blue
delay(700); // Delay a little bit to calm everything down
}
}
}
void iniciaMaquinaEstados()
{
int i;
int j;
for (i=0; i < NUM_ESTADOS; i++) {
for (j=0; j < NUM_EVENTOS; j++) {
acao_matrizTransicaoEstados[i][j] = NENHUMA_ACAO;
proximo_estado_matrizTransicaoEstados[i][j] = i;
}
}
proximo_estado_matrizTransicaoEstados[IDLE][RECEITA] = OCUPADO;
acao_matrizTransicaoEstados[IDLE][RECEITA] =PREPARA;
proximo_estado_matrizTransicaoEstados[OCUPADO][TERMINOU] = IDLE;
acao_matrizTransicaoEstados[OCUPADO][TERMINOU] = RESETA;
proximo_estado_matrizTransicaoEstados[OCUPADO][CANCELA] = IDLE;
acao_matrizTransicaoEstados[OCUPADO][CANCELA] = CANCELA;
} // initStateMachine
void iniciaSistema()
{
iniciaMaquinaEstados();
if (raftFound == false){
Serial.println("Raft location not known yet");
setColor(255, 0, 0); // red
delay(1000);
Serial.print("Looking for the raft...");
buttonState = digitalRead(buttonPin); // read the pushbutton input pin:
//move the stepper until the contact switch is triggered
while(buttonState == LOW && raftFound == false){
motor1.step(10, FORWARD, SINGLE);
buttonState = digitalRead(buttonPin);
}
raftFound = true;
Serial.println("ahh! There it is. :)");
motor1.release();
setColor(0, 255, 0); // blue
delay(700); // Delay a little bit to calm everything down
}
} // initSystem
int obterEvento() {
while(drinkRequested == false){
delay(200);
if (Serial.available()) {
for (int optic = 0; optic < opticCount; optic++){
for (int parameter = 0; parameter < parameterCount; parameter++){
for (int parameterMeasure = 0; parameterMeasure < parameterSize; parameterMeasure++){
if (Serial.available()) {
serialNumber = Serial.read(); /* load the number from serial buffer */
serialNumber = serialNumber - 48; /* convert number to text number */
numberCollector = numberCollector * 10 + serialNumber; /* store and build the number */
} else {
delay(250);
serialNumber = Serial.read(); /* load the number from serial buffer */
serialNumber = serialNumber - 48; /* convert number to text number */
numberCollector = numberCollector * 10 + serialNumber; /* store and build the number */
}
}
drinkMatrix[optic][parameter] = numberCollector; /* store the value in the array */
numberCollector = 0; /* Prepare variable for next number */
serialNumber = Serial.read(); /* to clear the comma from the buffer */
}
}
CheckArray();
Serial.println("Done loading");
drinkRequested = true;
Serial.println(drinkRequested);
}
for (int optic = 0; optic < opticCount; optic++) {
if ((drinkMatrix[optic][3]-drinkMatrix[optic][2])<0){
return SBRECEITA;
break;
}
else {
return RECEITA;
}
}
}
if(finish==true){
finish=false;
return TERMINOU;
}
while(drinkRequested == true){
delay(200);
if (Serial.available()) {
if (Serial.available()) {
serialNumber = Serial.read(); /* load the number from serial buffer */
if(serialNumber==1){
serialNumber=0;
return CANCELA;
}
} else {
delay(250);
serialNumber = Serial.read(); /* load the number from serial buffer */
if(serialNumber==1){
serialNumber=0;
return CANCELA;
}
}
}
}
}
int obterAcao(int estado, int codigoEvento) {
return acao_matrizTransicaoEstados[estado][codigoEvento];
} // obterAcao
int obterProximoEstado(int estado, int codigoEvento) {
return proximo_estado_matrizTransicaoEstados[estado][codigoEvento];
} // obterEstado
int main() {
int codigoEvento;
int codigoAcao;
int estado;
estado = IDLE;
iniciaSistema();
printf ("Maquina iniciada\n");
for( ; ; ) {
codigoEvento = obterEvento();
if (codigoEvento != NENHUM_EVENTO)
{
codigoAcao = obterAcao(estado, codigoEvento);
estado = obterProximoEstado(estado, codigoEvento);
printf("Estado: %d Evento: %d Acao:%d\n", estado, codigoEvento, codigoAcao);
}
} // while true
} // main