diff --git a/py/speech_coltrol_led.py b/py/speech_coltrol_led.py index 82878db..ef67042 100644 --- a/py/speech_coltrol_led.py +++ b/py/speech_coltrol_led.py @@ -12,7 +12,7 @@ def trigger_action(command): if "fire" in command.lower(): GPIO.output(LED_PIN, GPIO.HIGH) print("Light ON") - elif "dark" in command.lower(): + elif "night" in command.lower(): GPIO.output(LED_PIN, GPIO.LOW) print("Light OFF")