From 1c742c2004dfec41fe2512d7a7542b8822b1dac5 Mon Sep 17 00:00:00 2001 From: Stefan Dastig Date: Thu, 22 Oct 2020 21:30:49 +0200 Subject: [PATCH] Display jetzt nurnoch 1mal die Sekunde aktualisiert --- Software/reflowController/reflowController.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Software/reflowController/reflowController.ino b/Software/reflowController/reflowController.ino index 0abecf5..378ff8d 100644 --- a/Software/reflowController/reflowController.ino +++ b/Software/reflowController/reflowController.ino @@ -33,7 +33,7 @@ unsigned long timer1000 = 0; void setup() { - Serial.begin(9600); + Serial.begin(57600); Serial.println("Reflow Controller v00.01"); Encoder_Init(); @@ -63,7 +63,7 @@ void loop() { timer1000 = millis(); Reflow_Task(); - } - Display_Task(); // so oft wie möglich + Display_Task(); + } }