diff --git a/light_fast.ino b/light_fast.ino index 330602e..80664f3 100644 --- a/light_fast.ino +++ b/light_fast.ino @@ -55,7 +55,11 @@ void movement(){ else{ movement_threshold = 80; } - if (movement_threshold-25 > 0) mySerial.write(movement_threshold-25); + if (movement_threshold-25 > 0){ + mySerial.write(movement_threshold-25); + Serial.print("Msg Send:"); + Serial.println(movement_threshold-25); + } } void setup() {