reflow.ino 6.7 KB

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