Update watchdog in Steuerung_Truhen.ino

watchdog 5S is not available in standard arduino uno class
This commit is contained in:
Simon Zeyer 2020-08-05 18:56:38 +00:00
parent d5bc0b5fee
commit c1e3c26ba8

View File

@ -161,7 +161,7 @@ void setup() {
logfile.close();
lcd.clear();
wdt_enable(WDTO_5S); // Watchdog auf 1 s stellen
wdt_enable(WDTO_1S); // Watchdog auf 1 s stellen
Serial.println("Setup fi");
}