-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhornov2_PID.ino
456 lines (380 loc) · 10.4 KB
/
hornov2_PID.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
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
#include <LiquidCrystal.h>
#include <Keypad.h>
#include <PID_v1.h>
#include "Adafruit_MAX31855.h"
#include <Time.h>
#include <TimeAlarms.h>
//--------keypad setup
const byte ROWS = 4;
const byte COLS = 4;
// Define the Keymap
char keys[ROWS][COLS] = {
{
'1','2','3','A' }
,
{
'4','5','6','B' }
,
{
'7','8','9','C' }
,
{
'*','0','#','D' }
};
// Connect keypad ROW0, ROW1, ROW2 and ROW3 to these Arduino pins.
byte rowPins[ROWS] = {
10, 9, 8, 7 };
// Connect keypad COL0, COL1 and COL2 to these Arduino pins.
byte colPins[COLS] = {
6, 5, 4, 3 };
// Create the Keypad
Keypad kpd = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );
// LCD pins
LiquidCrystal lcd(A0, A1, A2, A3, A4, A5);
// Relay output pin
const int relayPin = 13;
boolean estadoHorno = false;
//Temp units constants
const int C = 1;
const int F = 2;
//Temp input pins
int thermoDO = 2;
int thermoCS = 11;
int thermoCLK = 12;
Adafruit_MAX31855 thermocouple(thermoCLK, thermoCS, thermoDO);
float temperature;
//Define Variables we'll be connecting to
double Setpoint, Input, Output;
//Specify the links and initial tuning parameters
PID myPID(&Input, &Output, &Setpoint,2,5,1, DIRECT);
int WindowSize = 2000;
unsigned long windowStartTime;
int stageNum = 98;
int stageTemp[99];
unsigned long stageTime[99];
/**********************************/
void setup()
{
//se uso el pin 2 para conectar el lector de temp
//buscar otra opcion para disparar la funcion de no hay luz
//el interrupt para cuando se vaya la luz
//el pin 2 debe estar con una pulldown (10k) a tierra y a los 5v externos.
//attachInterrupt(0, noHayLuz, FALLING);
Serial.begin(9600);
//***PID
windowStartTime = millis();
//tell the PID to range between 0 and the full window size
myPID.SetOutputLimits(0, WindowSize);
//turn the PID on
myPID.SetMode(AUTOMATIC);
//LCD init (20chars, 4lines)
lcd.begin(20, 4);
//oven pins
pinMode(relayPin, OUTPUT);
digitalWrite(relayPin, LOW);
ovenOff();
}
/************************************/
void loop()
{
program();
//one loop for each programed stage
for (int stage = 0; stage < stageNum; stage++){
unsigned long startPoint = millis();
int startTemp = thermocouple.readFarenheit();
lcd.clear();
//stage clasification
//0 - free time temp up
//0 - tiempo libre sube temp
//1 - free time temp down
//1 - tiempo libre baja temp
//2 - fixed time temp up
//2 - tiempo fijo sube temp
//3 - fixed time temp down
//3 - tiempo fijo baja temp
//4 - fixed time temp doesn't change
//4 - tiempo fijo se mantiene temp
int stageType = getTypeOf(stage);;
//execute stage
while (true){
unsigned long millisVan = (millis() - startPoint);
//temp management
//if we need to correct temp
if((stageType == 2) || (stageType == 3)){
//temperatura a subir en la etapa
int deltaTemp = (stageTemp[stage] - startTemp);
//periodo de tiempo que debe tardar en subir cada grado
int pasito = (stageTime[stage] / deltaTemp);
//llama a ir a la temperatura de acuardo al tiempo que ha pasado
tempGoTo((millisVan / pasito) + startTemp);
}
//si no hay que ir corrigiendo
else {tempGoTo(stageTemp[stage]);}
//si la cancela el usuario
if(cancelInput()){break;}
//ESTA PARTE SOLO REFRESCA PANTALLA Y SALE SI SE ACABO EL TIEMPO
//si se dio un tiempo fijo para la etapa
if (stageTime[stage] > 0) {
//si se acabo el tiempo break
if(millisVan >= stageTime[stage]){break;}
//cuanto tiempo falta
unsigned long millisFaltan = stageTime[stage] - millisVan;
refresh(stage, millisFaltan, stageTemp[stage]);
}
//si se dio cero en el tiempo asumimos que queremos alcanzar la temp lo antes posible
else {
if(abs(thermocouple.readFarenheit() - stageTemp[stage]) < 2){break;}
refresh(stage, 0, Setpoint);
}
}
//apago el horno al final de cada etapa para asegurar que no se quede prendido en ningun caso
//si la siguiente etapa necesita calentar, lo prende ella
ovenOff();
}
fin();
}
//TODO*******************************************
//**YA**subdivision de etapas para subir cada grado en determinado tiempo
//**YA**si voy a subir 60 grados en 1 minuto toca a 1 segundo por grado (subdividirlo por grado)
//que pasa cuando no da tiempo de bajar la temperatura en el periodo de tiempo dado.
//poner chequeo de error que no te deje bajar temperatura en un tiempo dado, solo en tiempo 0.
//ponerle proteccion de errores en los inputs (solo numeros y mayores de cero)
//--------------------------------------------------
//funcion para clasificar la etapa
//0 - tiempo libre sube temp
//1 - tiempo libre baja temp
//2 - tiempo fijo sube temp
//3 - tiempo fijo baja temp
//4 - tiempo fijo se mantiene temp
int getTypeOf(int eta){
int stageType;
//tiempo libre
if (stageTime[eta] == 0) {
//si es la primera etapa, asumimos que sube
if (eta == 0){
stageType = 0;
}
//si la etapa anterior tiene temp menor, sube
else if (stageTemp[eta - 1] < stageTemp[eta]){
stageType = 0;
}
//si no, baja
else {
stageType = 1;
}
}
//tiempo fijo
else {
//si es la primera etapa, asumimos que sube
if (eta == 0){
stageType = 2;
}
//si la etapa anterior tiene temp menor, sube
else if (stageTemp[eta - 1] < stageTemp[eta]){
stageType = 2;
}
//si es igual, se mantiene
else if (stageTemp[eta - 1] == stageTemp[eta]){
stageType = 4;
}
//si no, baja
else {
stageType = 3;
}
}
return (stageType);
}
//--------------------------------------------------
//funcion para programar el horno
void program(){
int i = 0;
while(i < stageNum){
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Paso " );
lcd.print(i+1);
stageTemp[i] = tempInput(i);
if (stageTemp[i] > 0){
stageTime[i] = timeInput(i);
}
i++;
}
}
//--------------------------------------------------
//temp input
int tempInput(int et){
int columna = 10;
String stringTemp = "";
lcd.setCursor(0, 1);
lcd.print("(F) temp? " );
lcd.setCursor(0, 4);
lcd.print("# enter * go" );
while(1){
char key = kpd.getKey();
lcd.setCursor(columna, 1);
if (key != NO_KEY){
if (key == '*'){
stageNum = et;
return(-1);
}
else if (key == '#'){
int valor = stringTemp.toInt();
return(valor);
}
stringTemp = stringTemp + key;
lcd.print(key);
columna++;
}
}
}
//--------------------------------------------------
//time input
unsigned long timeInput(int et){
int columna = 12;
String stringTime = "";
lcd.setCursor(0, 2);
lcd.print("(min) time? " );
lcd.setCursor(0, 4);
lcd.print("# enter " );
while(1){
char key = kpd.getKey();
lcd.setCursor(columna, 2);
if (key != NO_KEY){
if (key == '#'){
int valor = stringTime.toInt();
return(valor*60000);
}
stringTime = stringTime + key;
lcd.print(key);
columna++;
}
}
}
//--------------------------------------------------
//cancel input
boolean cancelInput(){
char key = kpd.getKey();
if (key != NO_KEY){
if (key == '*'){
return(true);
}
return(false);
}
}
//--------------------------------------------------
//fin
void fin(){
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("LISTO" );
//a ver si con esto se arregla el maximo de temp al terminar
ovenOff();
/*lcd.setCursor(0, 2);
lcd.print("Para continuar" );
lcd.setCursor(0, 3);
lcd.print("presiona #" );*/
while(true){
// poner un mensaje de pica * para reiniciar
delay(500);
char key = kpd.getKey();
if (key != NO_KEY){
if (key == '#'){
break;
}
}
}
}
//--------------------------------------------------
//arrancar el PID con un setpoint en Farenheit
//PID
void tempGoTo(double goTo){
Setpoint = goTo;
Input = thermocouple.readFarenheit();
myPID.Compute();
/************************************************
* turn the output pin on/off based on pid output
************************************************/
if(millis() - windowStartTime>WindowSize)
{ //time to shift the Relay Window
windowStartTime += WindowSize;
}
if(Output < millis() - windowStartTime) {
ovenOff();
}
else {
prenderHorno();
}
}
//--------------------------------------------------
//acciones a tomar si se fue la luz
void noHayLuz(){
//la accion puede ser reportar en que etapa y hora-minuto se quedo.
ovenOff();
lcd.clear();
lcd.print("Se fue la luz!!!");
}
//---------------------------------------------------
//funcion para refrescar el LCD
void refresh(int current, unsigned long resta, int spEtapa){
lcd.setCursor(0, 0);
lcd.print("Paso " );
lcd.print(current+1);
lcd.print("/");
lcd.print(stageNum);
lcd.print(" (" );
int horas = resta/3600000 ;
if (horas < 10){lcd.print("0");}
lcd.print(horas);
lcd.print(":" );
int minutos = (resta%3600000)/60000 ;
if (minutos < 10){lcd.print("0");}
lcd.print(minutos);
lcd.print(":" );
int segundos = ((resta%3600000)%60000)/1000;
if (segundos < 10){lcd.print("0");}
lcd.print(segundos);
lcd.print(")" );
lcd.setCursor(0, 1);
lcd.print(thermocouple.readFarenheit(), 1);
lcd.print(" F - ");
lcd.print(thermocouple.readCelsius(), 1);
lcd.print(" C ");
lcd.setCursor(0, 2);
lcd.print("=> ");
lcd.print(Setpoint, 0);
lcd.print(" F ");
lcd.setCursor(18, 2);
if(estadoHorno){
lcd.print("on");
}
else{
lcd.print(" ");
}
lcd.setCursor(0, 4);
//lcd.print("* para cancelar");
lcd.print("=> ");
lcd.print(spEtapa);
lcd.print(" F ");
}
//---------------------------------------------------
//funcion para prender el horno
void prenderHorno(){
digitalWrite(relayPin, HIGH);
estadoHorno = true;
}
//---------------------------------------------------
//funcion para apagar el horno
void ovenOff(){
digitalWrite(relayPin, LOW);
estadoHorno = false;
}
//----------------------------------------------------
//funcion para convertir centigrados a farenheit
double c2f(double tGrados){
return(((9/5) * tGrados) + 32);
}
//----------------------------------------------------
//funcion para convertir farenheit a centigrados
double f2c(double tGrados){
return((5/9) * (tGrados - 32));
}