signals.ino 536 B

12345678910111213141516171819
  1. //When the reflow starts, preheat leds will fast blink
  2. //to indicate auto reflow will start in 5 seconds
  3. void playStartingLEDBlinks(){
  4. digitalWrite(LED_PREHEAT, LOW);
  5. for(int i = 0; i < 10; i++){
  6. digitalWrite(LED_PREHEAT, HIGH);
  7. delay(200);
  8. digitalWrite(LED_PREHEAT, LOW);
  9. delay(200);
  10. }
  11. }
  12. //Update the button press state to global variable
  13. void updateButtonPressState(){
  14. int x = digitalRead(START_BTN);
  15. startPressed = (x == LOW);
  16. x = digitalRead(STOP_BTN);
  17. stopPressed = (x == LOW);
  18. }