Tobias Jansen / Mbed OS Lorawan_Version_0_1

Dependencies:   Lorawan_Version_0_1

Dependents:   Lorawan_Version_0_1

Revision:
73:974c1df98553
Parent:
72:67c5bce77999
diff -r 67c5bce77999 -r 974c1df98553 Light/Light.cpp
--- a/Light/Light.cpp	Tue Jan 28 14:22:48 2020 +0000
+++ b/Light/Light.cpp	Fri Jan 31 08:58:37 2020 +0000
@@ -20,7 +20,7 @@
 void Light::adjust(uint32_t TimeStanding )
 {       
     if (this->BlinkEventID == 0){ // if Blinking is active we shouldnt override the blink outputs
-        if(TimeStanding<1000) LichtHell->write(1); else LichtHell->write(0);
+        if(TimeStanding<10000) LichtHell->write(1); else LichtHell->write(0);
         if(TimeStanding>10000) LichtAus->write(1); else LichtAus->write(0);
     }
 }