-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.py
74 lines (61 loc) · 2.54 KB
/
main.py
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
import time
import tkinter as tk
from tkinter import messagebox
import logging
from gui import DevProGUI
from utils import respond, record_audio, speak, test_microphone
from wake_word import listen_for_wake_word
import os
# Configure logging
logging.basicConfig(level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s')
class Person:
def __init__(self):
self.name = ''
def setName(self, name):
self.name = name
logging.info(f"Name set to: {name}")
def main():
try:
logging.info("Starting DevPro AI Voice Assistant...")
# Bypass ALSA configuration errors
os.environ['PYTHONUNBUFFERED'] = '1'
os.environ['SDL_AUDIODRIVER'] = 'dsp'
os.environ['ALSA_CARD'] = '0' # Force specific ALSA card index
# Test microphone with new error-suppressed test
logging.info("Testing microphone...")
if not test_microphone():
logging.error("Microphone test failed - running diagnostics...")
print("\nTROUBLESHOOTING STEPS:")
print("1. Check physical microphone connection")
print("2. Run 'alsamixer' to verify input levels")
print("3. Try different USB port if using external mic")
print("4. Test with simple recorder:")
print(" arecord -d 5 test.wav && aplay test.wav")
raise Exception("Critical microphone failure - see troubleshooting steps above")
# Proceed with GUI initialization
logging.info("Initializing GUI...")
root = tk.Tk()
root.title("DevPro AI Voice Assistant")
# Set minimum window size
root.minsize(600, 400)
# Center the window on screen
window_width = 800
window_height = 600
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
center_x = int(screen_width/2 - window_width/2)
center_y = int(screen_height/2 - window_height/2)
root.geometry(f'{window_width}x{window_height}+{center_x}+{center_y}')
person_obj = Person()
gui = DevProGUI(root, respond, record_audio, speak, person_obj)
logging.info("GUI initialized successfully")
root.mainloop()
except Exception as e:
logging.error(f"Error starting the application: {str(e)}")
if 'root' in locals():
messagebox.showerror("Error", f"An error occurred: {str(e)}")
root.destroy()
raise
if __name__ == "__main__":
main()