utils.ino 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //Read Temp read the current temperature of the hotplate
  2. /*
  3. * Read Current temperature from ADC
  4. * The ADC is reading from a voltage divider
  5. * 5V --- 1k Ohm --- (ADC) --- 100k NTC --- GND
  6. *
  7. * ADC Reading / Temperature (degree C)
  8. * 250 / 25
  9. * 225 / 100
  10. * 155 / 160 (Preheat Temp)
  11. * 123 / 220 (Reflow Temp)
  12. * 100 / 240 (Hard cutoff Temp)
  13. *
  14. * Each reading takes around 100ms
  15. */
  16. int readTemp() {
  17. int numReadings = 10; // Number of readings to average
  18. int totalSensorValue = 0;
  19. for (int i = 0; i < numReadings; ++i) {
  20. totalSensorValue += analogRead(TEMP_PIN);
  21. delay(10); // Optional: add a small delay between readings if needed
  22. }
  23. // Calculate the average sensor value
  24. int averageSensorValue = totalSensorValue / numReadings;
  25. return averageSensorValue;
  26. }
  27. //Update heater power state base on temp reading
  28. //The hotter the plate, the smaller the ADC reading
  29. void updateHeaterPowerState(){
  30. int currentADC = readTemp();
  31. if (currentADC <= CUTOFF_TEMP_ADC){
  32. digitalWrite(HEATER_PIN, LOW);
  33. USBSerial_println("!!! OVERHEAT !!!");
  34. return;
  35. }
  36. if (currentADC > targetTempADC + offset){
  37. //Temperature too low. Turn on the heater
  38. analogWrite(HEATER_PIN, targetPwrPWM);
  39. USBSerial_print("+ ");
  40. USBSerial_println(currentADC);
  41. }else if (currentADC < targetTempADC - offset){
  42. //Temperature too high. Turn off the heater
  43. analogWrite(HEATER_PIN, 0);
  44. USBSerial_print("- ");
  45. USBSerial_println(currentADC);
  46. }else{
  47. //Within range. Keep the current state
  48. }
  49. }
  50. //Update Key States handle touch button events listening and global state update
  51. void updateKeyStates(){
  52. TouchKey_Process();
  53. uint8_t touchResult = TouchKey_Get();
  54. //Start button, require hold down for 3 seconds to start
  55. if (touchResult & (1 << 2)) {
  56. startCountdown--;
  57. if (startCountdown <=0){
  58. /* START REFLOW PROCESS - PREHEAT */
  59. USBSerial_println("!!! Reflow Started !!!");
  60. reflowing = true;
  61. startCountdown = 0; //Prevent it from going underflow
  62. playStartingLEDBlinks(); //Play fast blink start warning
  63. targetTempADC = PREHEAT_TEMP_ADC; //Set the target temp to preheat
  64. targetPwrPWM = PREHEAT_PWR_PWM; //Set power rating to preheat
  65. digitalWrite(LED_PREHEAT, HIGH); //Light up the preheat LED
  66. }
  67. } else {
  68. //Touch released
  69. startCountdown = HOLDSTART_TIME;
  70. }
  71. //Stop button, stop immediately
  72. if (touchResult & (1 << 5)) {
  73. reflowing= false;
  74. USBSerial_println("Reflow Stopped");
  75. targetTempADC = COOLDOWN_TEMP_ADC;
  76. }
  77. }