From 632f42477a107602f5014d1f5015d54c886ccad9 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 12 Oct 2025 17:18:44 -0700 Subject: [PATCH] Update settings.py --- modules/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/settings.py b/modules/settings.py index 8c872db..057f056 100644 --- a/modules/settings.py +++ b/modules/settings.py @@ -371,7 +371,7 @@ try: useLocalVoxModel = config['radioMon'].getboolean('useLocalVoxModel', False) # default False localVoxModelPath = config['radioMon'].get('localVoxModelPath', 'no') # default models/vox.tflite voxLanguage = config['radioMon'].get('voxLanguage', 'en-US') # default en-US - voxInputDevice = config['radioMon'].getint('voxInputDevice', -1) # default -1 use system default input device + voxInputDevice = config['radioMon'].getint('voxInputDevice', 0) # default -1 use system default input device # file monitor file_monitor_enabled = config['fileMon'].getboolean('filemon_enabled', False)