reflow.ino 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. #define HOLDSTART_TIME 100 //in cycles
  19. #define COOLDOWN_TEMP_ADC 255 //Room temperature
  20. //Preheat power settings
  21. #define PREHEAT_TEMP_ADC 155 //160 degree C
  22. #define PREHEAT_PWR_PWM 150 //160 degree C
  23. //Reflow power settings
  24. #define REFLOW_TEMP_ADC 123 //220 degree C
  25. #define REFLOW_PWR_PWM 255
  26. #define CUTOFF_TEMP_ADC 100 //240 degree C, overheat cutoff
  27. //Func def
  28. void updateHeaterPowerState();
  29. void updateKeyStates();
  30. int readTemp();
  31. //Runtimes
  32. bool reflowing = false;
  33. int startCountdown = HOLDSTART_TIME; //Hold for 1000ms to start
  34. int currentHeatplateTemp = 0; //Converted temperature in degree C (rounded)
  35. int cycleCounter = 0; //Record cycle time up to 10 seconds
  36. bool blinkState = false; //If blinking this will be switching between true and false
  37. bool reflowComplete = false; //Indicate if the stopping is done because of reflow complete
  38. int targetTempADC = 255; //Target ADC reading to reach, 255 = room temperature
  39. int targetPwrPWM = 0; //Target PWM cycle for heater, 255 = full power, 0 = off
  40. int offset = 1; //Allow +-offset for the ADC reading before reheating / cooling
  41. void setup() {
  42. //Enable the touch buttons
  43. //Enable all 6 channels:TIN2(P1.4),TIN5(P1.7)
  44. TouchKey_begin((1 << 2) | (1 << 5));
  45. //Set LED pins to output
  46. pinMode(LED_PREHEAT, OUTPUT);
  47. pinMode(LED_REFLOW, OUTPUT);
  48. digitalWrite(LED_PREHEAT, LOW);
  49. digitalWrite(LED_REFLOW, LOW);
  50. //Set temp sense pin to input
  51. pinMode(TEMP_PIN, INPUT);
  52. //Set mosfet control pins to output and disable it
  53. pinMode(HEATER_PIN, OUTPUT);
  54. digitalWrite(HEATER_PIN, LOW);
  55. }
  56. void loop() {
  57. //Check key status
  58. updateKeyStates();
  59. //Update current temperature value
  60. if (reflowing){
  61. //Reflowing. cycle time = 100ms
  62. updateHeaterPowerState();
  63. }else{
  64. //Standby, cycle time = 10ms
  65. digitalWrite(HEATER_PIN, LOW);
  66. if (cycleCounter%200 == 0){
  67. if (reflowComplete){
  68. //Reflow done blink
  69. if (blinkState){
  70. digitalWrite(LED_REFLOW, HIGH);
  71. }else{
  72. digitalWrite(LED_REFLOW, LOW);
  73. }
  74. }else{
  75. //Standby blink
  76. if (blinkState){
  77. digitalWrite(LED_PREHEAT, HIGH);
  78. }else{
  79. digitalWrite(LED_PREHEAT, LOW);
  80. }
  81. }
  82. blinkState = !blinkState;
  83. }
  84. delay(10);
  85. }
  86. //Cycle printout
  87. //USBSerial_println("cycle");
  88. cycleCounter++;
  89. if (cycleCounter > 10000){
  90. cycleCounter = 0;
  91. }
  92. }