reflow.ino 6.1 KB

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