Merge Conflic resolve

This commit is contained in:
-help 2024-01-28 03:07:17 +02:00
parent abce4ae4be
commit 9f901b6554

View File

@ -16,6 +16,7 @@
#define MOSTFET_PIN 17
double currentTemp = 0;
@ -30,6 +31,8 @@ OledDisplay oled = OledDisplay();
TemperatureController temperatureController ;
TFT_Display tftDisplay ;
@ -89,6 +92,8 @@ void loop()
Serial.println("State changed from " + String(STATE_STR(state)) + " to " + String(STATE_STR(newState)));
// State changed from state to newState (user input or wifi input needs to be above here)
if (newState == PREHEAT) {
tftDisplay.init(&chosenReflowProfile);
chosenReflowProfile.start();
// Start the PID
pidController.start();