Update light_fast.ino

This commit is contained in:
i3le 2024-07-11 19:14:52 +02:00
parent 23c0ccd7b5
commit b37183d1dd

View file

@ -55,7 +55,11 @@ void movement(){
else{ else{
movement_threshold = 80; 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() { void setup() {