aboutsummaryrefslogtreecommitdiffstats
path: root/DataBase/HomeAuto/SmartBulb.py
blob: 8fad54c7d7e4d4e82dcab1df679ecb50f0123bcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
from re import S
import pyttsx3
import speech_recognition as sr
import pyautogui 
import os
import keyboard
from time import sleep

engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
engine.setProperty('voices',voices[1].id)

def Speak(audio):
    print(" ")
    print(f": {audio}")
    engine.say(audio)
    engine.runAndWait()
    print(" ")

def TakeCommand():

    r = sr.Recognizer()

    with sr.Microphone() as source:

        print(": Listening....")

        r.pause_threshold = 1

        audio = r.listen(source)


    try:

        print(": Recognizing...")

        query = r.recognize_google(audio,language='en-in')

        print(f": Your Command : {query}\n")

    except:
        return ""

    return query.lower()

def Activate():

    try:

        os.system('TASKKILL /F /im HD-Player.exe')

    except Exception as e:
        print(e)

    Speak("Activating The Home Automation Setup.")

    keyboard.press_and_release('windows + s')

    sleep(1)

    keyboard.write('blue')

    sleep(1)

    keyboard.press('enter')

    sleep(20)

    pyautogui.click(x=1157, y=81)
    
    sleep(5)

    pyautogui.click(x=553, y=148)

    sleep(3)

    Speak("Activated The Home Setup .")
    
def StartLight():

    Speak("Activating The Smart Bulb .")

    pyautogui.click(x=820, y=187)

    Speak("Activated.")

def CloseLight():

    Speak("Closing The Smart Bulb .")

    pyautogui.click(x=820, y=187)

    Speak("Closed.")