reflow-v6.ino 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*
  2. 60W PD Powered Automatic Reflow Hoteplate
  3. Author: tobychui
  4. Firmware version for v6 PCB
  5. Notes:
  6. - Temperature sensing is done using 1k 1% resistor and a 10k Thermistor
  7. You might need to change the code if you are using other values
  8. - If you are using the type-C 6p version of the reflow PCB, and after
  9. pluggin in the type C cable no led lights up, try flip the type C
  10. cable upside down
  11. Button Mappings (Active Low, aka not pressing = HIGH)
  12. Start Btn: P1.4
  13. Stop Btn: P1.7
  14. Download Settings
  15. CH552
  16. 16Mhz (internal, 3.3V or 5V)
  17. */
  18. #include <Serial.h>
  19. #define TEMP_PIN 11 //P1.1
  20. #define HEATER_PIN 34 //P3.4
  21. #define LED_PREHEAT 15 //P1.5
  22. #define LED_REFLOW 16 //P1.6
  23. #define START_BTN 14 //P1.4
  24. #define STOP_BTN 17 //P1.7
  25. //Timing settings. Each cycle is approximately 100ms
  26. #define HOLDSTART_TIME 30 //START Button hold down time in cycles
  27. #define HOLDSTOP_TIME 10 //STOP Button hold down time in cycles
  28. #define SOAKING_TIME 600 //SOAKING temperature upkeep time in cycles
  29. /*
  30. Temperature Settings
  31. The ADC value can be calculated using the following line equation
  32. t=-0.7x+250
  33. where X is ADC reading and t is target temp in degree C
  34. Note that different setup (e.g. ref resistor value / NTC resistor value) might have different equations
  35. You can experiment with yours and get a few data point to plot your own line
  36. */
  37. #define COOLDOWN_TEMP_ADC 255 //Room temperature
  38. //Preheat temp & power
  39. #define PREHEAT_START_ADC 143 //150 degree C
  40. #define PREHEAT_TEMP_ADC 122 //160 degree C
  41. #define PREHEAT_PWR_PWM 155 //60% power output
  42. //Reflow temp & power
  43. #define REFLOW_TEMP_ADC 58 //220 degree C
  44. #define REFLOW_PWR_PWM 255 //100% power output
  45. //Overheat cutoff temp
  46. #define CUTOFF_TEMP_ADC 53 //250 degree C
  47. //Func def
  48. bool updateHeaterPowerState();
  49. void updateKeyStates();
  50. int readTemp();
  51. //Runtimes
  52. bool reflowing = false; //Reflow has started
  53. bool reflowComplete = false; //Indicate if the stopping is done because of reflow complete
  54. bool startPressed = false; //Start button is pressed down
  55. bool stopPressed = false; //Stop button is pressed down
  56. /*
  57. Reflow Stages define what is the next state the hotplate should reach
  58. 0: Standby
  59. 1: Preheating
  60. 2: Preheat Holding / Soaking
  61. 3: Reflowing
  62. 4: Cooling down
  63. */
  64. int reflowStages = 0;
  65. int startCountdown = HOLDSTART_TIME; //Hold for HOLDSTART_TIME to start to prevent accidental touches
  66. int stopcountdown = HOLDSTOP_TIME; //Hold for HOLDSTOP_TIME to stop reflowing
  67. int cycleCounter = 0; //Record cycle time up to 10 seconds
  68. int soakingCountdown = SOAKING_TIME;
  69. //Blink state controls
  70. bool blinkState = false; //If blinking this will be switching between true and false
  71. bool blinkYellow = true; //Slow blink yellow if enabled (Standby). Do not enable both yellow and red at the same time
  72. bool blinkRed = false; //Slow blink red if enable (End of Reflow). Do not enable both yellow and red at the same time
  73. bool fastBlinkState = false;
  74. bool fastblinkRed = false;
  75. //Real-time temperature control targets
  76. int targetTempADC = 255; //Target ADC reading to reach, 255 = room temperature
  77. int targetPwrPWM = 0; //Target PWM cycle for heater, 255 = full power, 0 = off
  78. int offset = 0; //Allow +-offset for the ADC reading before reheating / cooling
  79. void setup() {
  80. //Set button pins to input
  81. pinMode(START_BTN, INPUT);
  82. pinMode(STOP_BTN, INPUT);
  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. USBSerial_println("Reflow Hotplate Ready!");
  94. }
  95. void loop() {
  96. /* State Check */
  97. updateKeyStates();
  98. /* Main reflowing logics */
  99. //Add delay to the end of each conditions so each loop cycle is approximate 100ms
  100. if (reflowing) {
  101. /* Currently is in reflow stage */
  102. bool tempReached = updateHeaterPowerState(); //This action takes 100ms
  103. if (tempReached) {
  104. //This stage temperature reached. Move to next stage
  105. if (reflowStages == 1) {
  106. //Preheat stage completed. Enter soaking stage
  107. USBSerial_println("Preheat temperature reached. Soaking started");
  108. targetTempADC = PREHEAT_TEMP_ADC; //Set temperature to soaking end temp
  109. reflowStages = 2; //Set reflow stage to soaking
  110. soakingCountdown = SOAKING_TIME;
  111. fastblinkRed = true;
  112. } else if (reflowStages == 3) {
  113. //Reflowing target temperature reached. Start cooldown and shut down heater
  114. USBSerial_println("Reflow completed. Cooling down");
  115. reflowStages = 4;
  116. blinkYellow = false;
  117. blinkRed = true;
  118. targetTempADC = COOLDOWN_TEMP_ADC;
  119. targetPwrPWM = 0;
  120. //Reflow ended. Wait until stop being press to exit this state
  121. }
  122. }
  123. if (reflowStages == 2) {
  124. //Wait for the soaking to complete and enter reflow stage
  125. soakingCountdown--;
  126. if (soakingCountdown <= 0) {
  127. //Soaking completed. Enter reflow stage
  128. USBSerial_println("Soaking time ended. Reflow started");
  129. //Set Reflow LED to high
  130. fastblinkRed = false;
  131. digitalWrite(LED_REFLOW, HIGH);
  132. //Set to reflow temperature
  133. targetTempADC = REFLOW_TEMP_ADC; //Set the target temp to reflow
  134. targetPwrPWM = REFLOW_PWR_PWM; //Set power rating to reflow
  135. //Update the reflow stage to 3
  136. reflowStages = 3;
  137. } else if (soakingCountdown % 100 == 0) {
  138. USBSerial_print("Soaking cycles left: ");
  139. USBSerial_println(soakingCountdown);
  140. }
  141. }
  142. delay(1);
  143. } else {
  144. /* Standby Mode */
  145. digitalWrite(HEATER_PIN, LOW);
  146. blinkYellow = true;
  147. delay(100); //adjust this if needed to make sure reflow cycles use the same time as standby cycles
  148. }
  149. /* Blink Signal Handlers */
  150. //FastBlink handler, execute every 500ms
  151. if (cycleCounter % 5 == 0 && fastblinkRed) {
  152. digitalWrite(LED_PREHEAT, LOW);
  153. if (fastBlinkState) {
  154. digitalWrite(LED_REFLOW, HIGH);
  155. } else {
  156. digitalWrite(LED_REFLOW, LOW);
  157. }
  158. fastBlinkState = !fastBlinkState;
  159. }
  160. //Blink handler, execute every 2 seconds
  161. if (cycleCounter % 20 == 0) {
  162. if (blinkYellow) {
  163. if (blinkState) {
  164. digitalWrite(LED_PREHEAT, HIGH);
  165. } else {
  166. digitalWrite(LED_PREHEAT, LOW);
  167. }
  168. } else if (blinkRed) {
  169. if (blinkState) {
  170. digitalWrite(LED_REFLOW, HIGH);
  171. } else {
  172. digitalWrite(LED_REFLOW, LOW);
  173. }
  174. }
  175. blinkState = !blinkState;
  176. }
  177. /*
  178. Cycle Counter
  179. Counter are limited to 600 to prevent overflow.
  180. */
  181. cycleCounter++;
  182. if (cycleCounter > 600) {
  183. cycleCounter = 0;
  184. }
  185. }