reflow.ino 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. 60W PD Powered Automatic Reflow Hoteplate
  3. Author: tobychui
  4. Notes:
  5. Temperature sensing is done using 1k 1% resistor and a 10k Thermistor
  6. You might need to change the code if you are using other values
  7. Touch Button Mappings
  8. Start Btn: P1.4
  9. Stop Btn: P1.7
  10. */
  11. #include <Serial.h>
  12. #include <TouchKey.h>
  13. #define TEMP_PIN 11 //P1.1
  14. #define HEATER_PIN 34 //P3.4
  15. #define LED_PREHEAT 15 //P1.5
  16. #define LED_REFLOW 16 //P1.6
  17. //Timing settings. Each cycle is approximately 100ms
  18. #define HOLDSTART_TIME 30 //START Button hold down time in cycles
  19. #define HOLDSTOP_TIME 10 //STOP Button hold down time in cycles
  20. #define SOAKING_TIME 600 //SOAKING temperature upkeep time in cycles
  21. /*
  22. * Temperature Settings
  23. *
  24. * The ADC value can be calculated using the following line equation
  25. * t=-0.7x+250
  26. *
  27. * where X is ADC reading and t is target temp in degree C
  28. *
  29. * Note that different setup (e.g. ref resistor value / NTC resistor value) might have different equations
  30. * You can experiment with yours and get a few data point to plot your own line
  31. */
  32. #define COOLDOWN_TEMP_ADC 255 //Room temperature
  33. //Preheat temp & power
  34. #define PREHEAT_START_ADC 143 //150 degree C
  35. #define PREHEAT_TEMP_ADC 122 //160 degree C
  36. #define PREHEAT_PWR_PWM 155 //60% power output
  37. //Reflow temp & power
  38. #define REFLOW_TEMP_ADC 58 //220 degree C
  39. #define REFLOW_PWR_PWM 255 //100% power output
  40. //Overheat cutoff temp
  41. #define CUTOFF_TEMP_ADC 53 //230 degree C
  42. //Func def
  43. bool updateHeaterPowerState();
  44. void updateKeyStates();
  45. int readTemp();
  46. //Runtimes
  47. bool reflowing = false; //Reflow has started
  48. bool reflowComplete = false; //Indicate if the stopping is done because of reflow complete
  49. /*
  50. Reflow Stages define what is the next state the hotplate should reach
  51. 0: Standby
  52. 1: Preheating
  53. 2: Preheat Holding / Soaking
  54. 3: Reflowing
  55. 4: Cooling down
  56. */
  57. int reflowStages = 0;
  58. int startCountdown = HOLDSTART_TIME; //Hold for HOLDSTART_TIME to start to prevent accidental touches
  59. int stopcountdown = HOLDSTOP_TIME; //Hold for HOLDSTOP_TIME to stop reflowing
  60. int cycleCounter = 0; //Record cycle time up to 10 seconds
  61. int soakingCountdown = SOAKING_TIME;
  62. //Blink state controls
  63. bool blinkState = false; //If blinking this will be switching between true and false
  64. bool blinkYellow = true; //Slow blink yellow if enabled (Standby). Do not enable both yellow and red at the same time
  65. bool blinkRed = false; //Slow blink red if enable (End of Reflow). Do not enable both yellow and red at the same time
  66. bool fastBlinkState = false;
  67. bool fastblinkRed = false;
  68. //Real-time temperature control targets
  69. int targetTempADC = 255; //Target ADC reading to reach, 255 = room temperature
  70. int targetPwrPWM = 0; //Target PWM cycle for heater, 255 = full power, 0 = off
  71. int offset = 0; //Allow +-offset for the ADC reading before reheating / cooling
  72. void setup() {
  73. //Enable the touch buttons
  74. //Enable all 6 channels:TIN2(P1.4),TIN5(P1.7)
  75. TouchKey_begin((1 << 2) | (1 << 5));
  76. //refer to AN3891 MPR121 Baseline System for more details
  77. TouchKey_SetMaxHalfDelta(128); // increase if sensor value are more noisy
  78. TouchKey_SetNoiseHalfDelta(8); // If baseline need to adjust at higher rate, increase this value
  79. TouchKey_SetNoiseCountLimit(10); // If baseline need to adjust faster, increase this value
  80. TouchKey_SetFilterDelayLimit(5); // make overall adjustment slower
  81. TouchKey_SetTouchThreshold(220); // Bigger touch pad can use a bigger value
  82. TouchKey_SetReleaseThreshold(150); // Smaller than touch threshold
  83. //Set LED pins to output
  84. pinMode(LED_PREHEAT, OUTPUT);
  85. pinMode(LED_REFLOW, OUTPUT);
  86. digitalWrite(LED_PREHEAT, LOW);
  87. digitalWrite(LED_REFLOW, LOW);
  88. //Set temp sense pin to input
  89. pinMode(TEMP_PIN, INPUT);
  90. //Set mosfet control pins to output and disable it
  91. pinMode(HEATER_PIN, OUTPUT);
  92. digitalWrite(HEATER_PIN, LOW);
  93. }
  94. void loop() {
  95. //Check key status
  96. updateKeyStates();
  97. //Main reflowing logics
  98. //Add delay to the end of each conditions so each loop cycle is approximate 100ms
  99. if (reflowing) {
  100. bool tempReached = updateHeaterPowerState(); //This action takes 100ms
  101. if (tempReached) {
  102. //This stage temperature reached. Move to next stage
  103. if (reflowStages == 1) {
  104. //Preheat stage completed. Enter soaking stage
  105. USBSerial_println("Preheat temperature reached. Soaking started");
  106. targetTempADC = PREHEAT_TEMP_ADC; //Set temperature to soaking end temp
  107. reflowStages = 2; //Set reflow stage to soaking
  108. soakingCountdown = SOAKING_TIME;
  109. fastblinkRed = true;
  110. } else if (reflowStages == 3) {
  111. //Reflowing target temperature reached. Start cooldown and shut down heater
  112. USBSerial_println("Reflow completed. Cooling down");
  113. reflowStages = 4;
  114. blinkYellow = false;
  115. blinkRed = true;
  116. targetTempADC = COOLDOWN_TEMP_ADC;
  117. targetPwrPWM = 0;
  118. //Reflow ended. Wait until stop being press to exit this state
  119. }
  120. }
  121. if (reflowStages == 2) {
  122. //Wait for the soaking to complete and enter reflow stage
  123. soakingCountdown--;
  124. if (soakingCountdown <= 0) {
  125. //Soaking completed. Enter reflow stage
  126. USBSerial_println("Soaking time ended. Reflow started");
  127. //Set Reflow LED to high
  128. fastblinkRed = false;
  129. digitalWrite(LED_REFLOW, HIGH);
  130. //Set to reflow temperature
  131. targetTempADC = REFLOW_TEMP_ADC; //Set the target temp to reflow
  132. targetPwrPWM = REFLOW_PWR_PWM; //Set power rating to reflow
  133. //Update the reflow stage to 3
  134. reflowStages = 3;
  135. } else if (soakingCountdown % 100 == 0) {
  136. USBSerial_print("Soaking cycles left: ");
  137. USBSerial_println(soakingCountdown);
  138. }
  139. }
  140. delay(1);
  141. } else {
  142. //Standby mode
  143. digitalWrite(HEATER_PIN, LOW);
  144. blinkYellow = true;
  145. delay(100);
  146. }
  147. //FastBlink handler, execute every 500ms
  148. if (cycleCounter % 5 == 0 && fastblinkRed) {
  149. digitalWrite(LED_PREHEAT, LOW);
  150. if (fastBlinkState) {
  151. digitalWrite(LED_REFLOW, HIGH);
  152. } else {
  153. digitalWrite(LED_REFLOW, LOW);
  154. }
  155. fastBlinkState = !fastBlinkState;
  156. }
  157. //Blink handler, execute every 2 seconds
  158. if (cycleCounter % 20 == 0) {
  159. if (blinkYellow) {
  160. if (blinkState) {
  161. digitalWrite(LED_PREHEAT, HIGH);
  162. } else {
  163. digitalWrite(LED_PREHEAT, LOW);
  164. }
  165. } else if (blinkRed) {
  166. if (blinkState) {
  167. digitalWrite(LED_REFLOW, HIGH);
  168. } else {
  169. digitalWrite(LED_REFLOW, LOW);
  170. }
  171. }
  172. blinkState = !blinkState;
  173. }
  174. //Cycle printout
  175. //USBSerial_println("cycle");
  176. cycleCounter++;
  177. if (cycleCounter > 600) {
  178. cycleCounter = 0;
  179. }
  180. }