reflow.ino 5.4 KB

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