diff --git a/src/hardware.cpp b/src/hardware.cpp index 3d93511..1a7a8eb 100644 --- a/src/hardware.cpp +++ b/src/hardware.cpp @@ -50,10 +50,8 @@ void toggleDoor() { // Toggle the relay based on the current state if (relayState == LOW) { lockDoor(); - digitalWrite(LEDCTL_PIN,LOW); } else { unlockDoor(false); - digitalWrite(LEDCTL_PIN,HIGH); } #endif }