From b37183d1ddbbc371345afee6db1e48167f3d1534 Mon Sep 17 00:00:00 2001 From: i3le Date: Thu, 11 Jul 2024 19:14:52 +0200 Subject: [PATCH] Update light_fast.ino --- light_fast.ino | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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() {