From c1e3c26ba8771024215fce55a0e038ac307fd815 Mon Sep 17 00:00:00 2001 From: Simon Zeyer Date: Wed, 5 Aug 2020 18:56:38 +0000 Subject: [PATCH] Update watchdog in Steuerung_Truhen.ino watchdog 5S is not available in standard arduino uno class --- Steuerung_Truhen.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Steuerung_Truhen.ino b/Steuerung_Truhen.ino index c0604d0..7c8abb2 100644 --- a/Steuerung_Truhen.ino +++ b/Steuerung_Truhen.ino @@ -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"); }