Voice_Commands / run_command_responses.py
zinoubm's picture
finished setup
bb7af57
raw
history blame
678 Bytes
from playsound import playsound
class ResponseManager:
def activate_heated_seats():
playsound("assets\command_responses\heated_activated.wav")
def deactivate_heated_seats():
playsound("assets\command_responses\heated_deactivated.wav")
def activate_cooled_seats():
playsound("assets\command_responses\cooled_activated.wav")
def deactivate_cooled_seats():
playsound("assets\command_responses\cooled_deactivated.wav")
def activate_massage_seats():
playsound("assets\command_responses\massage_activated.wav")
def deactivate_massage_seats():
playsound("assets\command_responses\massage_deactivated.wav")