-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReflowOven_Controller_Nano_V1.ino
346 lines (315 loc) · 9.5 KB
/
ReflowOven_Controller_Nano_V1.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
//Reflow Oven controller program intended for an arduino nano combined with 3 SSRs
#include "max6675.h"
int heaterBottom = A0;
int heaterTop = A1;
int fanAndLight = A2;
int startButton = A6;
int greenLED = A4;
int yellowLED = A5;
int buzzer = A3;
double frontTempF = 0;
double backTempF = 0;
double leftTempF = 0;
double rightTempF = 0;
double avgTemp = 0;
int tcFrontDO = 2;
int tcFrontCS = 3;
int tcFrontCLK = 4;
int tcBackDO = 5;
int tcBackCS = 6;
int tcBackCLK = 7;
int tcLeftDO = 8;
int tcLeftCS = 9;
int tcLeftCLK = 10;
int tcRightDO = 11;
int tcRightCS = 12;
int tcRightCLK = 13;
bool enableRightTC = true;
bool enableFrontTC = true;
bool enableLeftTC = true;
bool enableBackTC = false;
int tempSet = 460;
int tempDrift = 20;
int preheatTemp = 135;
long timeElapsed = 0;
long startTime = 0;
double dutyCycle = 0.2;
int cycleLength = 10000; // in milliseconds
double cycleOnLength = cycleLength*dutyCycle; //in milliseconds
double cycleOffLength = cycleLength*(1-dutyCycle); //in milliseconds
long cycleStart = 0;
long cycleOnLegStart = 0;
long cycleOffLegStart = 0;
bool withinCycleOnLeg = false;
bool withinCycleOffLeg = false;
bool dutyCycleReduced = false;
int serialPrintFrequency = 5000; //in milliseconds
long serialPrintCycleStart = 0;
bool heatersOn = false;
MAX6675 tcFront(tcFrontCLK, tcFrontCS, tcFrontDO);
MAX6675 tcBack(tcBackCLK, tcBackCS, tcBackDO);
MAX6675 tcLeft(tcLeftCLK, tcLeftCS, tcLeftDO);
MAX6675 tcRight(tcRightCLK, tcRightCS, tcRightDO);
//approximately 10min required to pre-heat to 85F using lightbulb
//After 15min temp via lightbulb only is ~88F
//Disregard backTC. It may be faulty or may just be in a cooler area.
//The back TC is consistently 25-30F lower than the rest of the TCs
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println("GarageScience Reflow Program V1.0");
pinMode(startButton, INPUT);
pinMode(greenLED, OUTPUT);
pinMode(yellowLED, OUTPUT);
pinMode(fanAndLight, OUTPUT);
pinMode(heaterBottom, OUTPUT);
pinMode(heaterTop, OUTPUT);
pinMode(buzzer, OUTPUT);
//analogWrite(fanAndLight,255);
digitalWrite(fanAndLight, HIGH);
digitalWrite(heaterBottom, LOW);
digitalWrite(heaterTop, LOW);
digitalWrite(greenLED, LOW);
digitalWrite(yellowLED, LOW);
digitalWrite(buzzer, LOW);
//analogWrite(7,255);
//initiateFinishedBuzzer();
startTime = millis();
while (analogRead(startButton) > 500){
//digitalWrite(buzzer, HIGH);
readAllTCs();
//printTemperaturesToSerial();
//Serial.print("Time elapsed (sec): ");
//Serial.print(timeElapsed);
delay(100);
timeElapsed = (millis()-startTime)/1000;
}
digitalWrite(yellowLED, HIGH);
//delay(1000);
digitalWrite(buzzer, HIGH);
delay(500);
digitalWrite(buzzer, LOW);
delay(1000);
digitalWrite(buzzer, HIGH);
delay(500);
digitalWrite(buzzer, LOW);
delay(1000);
digitalWrite(buzzer, HIGH);
delay(1000);
digitalWrite(buzzer, LOW);
cycleStart = millis();
cycleOnLegStart = cycleStart;
withinCycleOnLeg = true;
withinCycleOffLeg = false;
setHeaters("on");
Serial.println();
Serial.print("Duty Cycle: ");
Serial.println(dutyCycle);
Serial.print("On Cycle Length in milliseconds: ");
Serial.println(cycleOnLength);
Serial.print("Off Cycle Length in milliseconds: ");
Serial.println(cycleOffLength);
Serial.println("***Beginning duty cycle controlled pre-heat cycle***");
while(analogRead(startButton) > 500){
if(withinCycleOnLeg){
Serial.print("time within On-Cycle = ");
Serial.println((millis() - cycleOnLegStart));
if((millis() - cycleOnLegStart) < cycleOnLength){
readAllTCs();
avgTemp = getAverageTemp();
if(!dutyCycleReduced && avgTemp > (preheatTemp - 20)){
//if I'm this close to preheat temp then I need to slow my role
dutyCycleReduced = true;
Serial.println("*****Within 20F of preheatTemp, wait here a moment, then reduce duty cycle*****");
delay(10000);
dutyCycle = 0.1;
cycleOnLength = cycleLength*dutyCycle; //in milliseconds
cycleOffLength = cycleLength*(1-dutyCycle); //in milliseconds
}
Serial.print("Average Temp(F) = ");
Serial.println(avgTemp);
if(avgTemp > preheatTemp){
//skip to end of on-cycle
//done with on leg
setHeaters("Off");
withinCycleOnLeg = false;
withinCycleOffLeg = true;
cycleOffLegStart = millis();
Serial.println();
Serial.println("***Premptively ended On-Cycle, beginning off cycle***");
}
delay(500);
}
else{
//done with on leg
//if(avgTemp > preheatTemp){ //then turn off heater otherwise don't bother since I'll just turn it back on
// setHeaters("Off");
//}
setHeaters("Off");
withinCycleOnLeg = false;
withinCycleOffLeg = true;
cycleOffLegStart = millis();
Serial.println();
Serial.println("***DONE with On-Cycle, beginning off cycle***");
}
}
else if(withinCycleOffLeg){
Serial.print("time within Off-Cycle = ");
Serial.println((millis() - cycleOffLegStart));
if((millis() - cycleOffLegStart) < cycleOffLength){
readAllTCs();
avgTemp = getAverageTemp();
Serial.print("Average Temp(F) = ");
Serial.println(avgTemp);
//if(avgTemp < (preheatTemp - 30)){
// //significantly below preheatTemp so skip to end of off-cycle
// //done with on leg
// setHeaters("On");
// withinCycleOnLeg = true;
// withinCycleOffLeg = false;
// cycleOnLegStart = millis();
// Serial.println();
// Serial.println("***Premptively ended Off-Cycle, beginning on cycle***");
//}
delay(500);
}
else{
//done with on leg
if(avgTemp < preheatTemp){ //then turn on heater otherwise don't bother since I'll just turn it back off
setHeaters("On");
}
withinCycleOnLeg = true;
withinCycleOffLeg = false;
cycleOnLegStart = millis();
Serial.println();
Serial.println("***DONE with Off-Cycle, beginning on cycle***");
}
}
else{
Serial.println("ERROR: during the warmup period I encountered an unexpected circumstance");
}
}
digitalWrite(yellowLED, LOW);
digitalWrite(greenLED, HIGH);
Serial.println();
Serial.println("*********************************************************");
Serial.print("Start Heating Cycle to: ");
Serial.println(tempSet);
Serial.println("*********************************************************");
Serial.println();
startTime = millis();
setHeaters("On");
}
void loop() {
// put your main code here, to run repeatedly:
//frontTempF = tcFront.readFahrenheit();
//backTempF = tcBack.readFahrenheit();
//leftTempF = tcLeft.readFahrenheit();
//rightTempF = tcRight.readFahrenheit();
readAllTCs();
avgTemp = getAverageTemp();
if(avgTemp > tempSet - tempDrift){
setHeaters("Off");
//wait a specified delay time
delay(60000);
initiateFinishedBuzzer();
}
//Serial.println();
//if(frontTempF < tempSet || backTempF < tempSet || leftTempF < tempSet || rightTempF < tempSet){
// //active heaters
// setHeaters("On");
// //analogWrite(heaterBottom, 255);
// //analogWrite(heaterTop, 255);
// //Serial.println("heater status: ON");
// //heatersOn = true;
//}
//else{
// //turn off heaters
// setHeaters("Off");
// //analogWrite(heaterBottom, 0);
// //analogWrite(heaterTop, 0);
// //Serial.println("heater status: OFF");
// //heatersOn = false;
//}
printTemperaturesToSerial();
Serial.print("Time elapsed (sec): ");
Serial.print(timeElapsed);
delay(5000);
timeElapsed = (millis()-startTime)/1000;
}
void initiateFinishedBuzzer(){
int i;
for(i = 0; i < 10; i++){
digitalWrite(buzzer, HIGH);
delay(200);
digitalWrite(buzzer, LOW);
delay(200);
}
for(i = 0; i < 10; i++){
digitalWrite(buzzer, HIGH);
delay(100);
digitalWrite(buzzer, LOW);
delay(100);
}
digitalWrite(buzzer, HIGH);
delay(5000);
digitalWrite(buzzer, LOW);
}
double getAverageTemp(){
int numberOfTempsUsed = 0;
double tempSum = 0;
if(enableRightTC){
tempSum = tempSum + rightTempF;
numberOfTempsUsed++;
}
if(enableFrontTC){
tempSum = tempSum + frontTempF;
numberOfTempsUsed++;
}
if(enableLeftTC){
tempSum = tempSum + leftTempF;
numberOfTempsUsed++;
}
if(enableBackTC){
tempSum = tempSum + backTempF;
numberOfTempsUsed++;
}
return (tempSum/numberOfTempsUsed);
}
void setHeaters(String newStatus){
if (newStatus.compareTo("On") == 0){
analogWrite(heaterBottom, 255);
analogWrite(heaterTop, 255);
heatersOn = true;
}
else if(newStatus.compareTo("Off") == 0){
analogWrite(heaterBottom, 0);
analogWrite(heaterTop, 0);
heatersOn = false;
}
}
void readAllTCs(){
frontTempF = tcFront.readFahrenheit();
backTempF = tcBack.readFahrenheit();
leftTempF = tcLeft.readFahrenheit();
rightTempF = tcRight.readFahrenheit();
}
void printTemperaturesToSerial(){
Serial.println();
Serial.print(" tcFront: ");
Serial.println(frontTempF);
Serial.print(" tcBack: ");
Serial.println(backTempF);
Serial.print(" tcLeft: ");
Serial.println(leftTempF);
Serial.print(" tcRight: ");
Serial.println(rightTempF);
Serial.print("startButton status: ");
Serial.println(analogRead(startButton));
if(heatersOn){
Serial.println("heater status: ON");
}
else{
Serial.println("heater status: OFF");
}
}