diff --git a/py/speech_coltrol_led.py b/py/speech_coltrol_led.py index e410319..82878db 100644 --- a/py/speech_coltrol_led.py +++ b/py/speech_coltrol_led.py @@ -9,7 +9,7 @@ GPIO.setmode(GPIO.BCM) GPIO.setup(LED_PIN, GPIO.OUT) def trigger_action(command): - if "let" in command.lower(): + if "fire" in command.lower(): GPIO.output(LED_PIN, GPIO.HIGH) print("Light ON") elif "dark" in command.lower():