Update Setup Process

- Added audio device to setup form
- Implemented 'getDevices.py' into setup form
- Now shows the user their devices to select the correct ID
- Fixed bug in the op25 dir created by new setup
- Finalized the '.env' file creation
This commit is contained in:
Logan Cusano
2024-05-13 00:41:44 -04:00
parent 7fb67f6ddf
commit 3e7b387092
2 changed files with 19 additions and 5 deletions

View File

@@ -19,7 +19,14 @@
<label for="clientCapabilities">Client Capabilities (comma-separated):</label>
<input type="text" id="clientCapabilities" name="clientCapabilities" required>
<br>
<label for="audioDeviceId">Audio Device ID (typically 'default'):</label>
<input type="text" id="audioDeviceId" name="audioDeviceId" required>
<br>
<button type="submit">Next</button>
<div>
<h3>Audio Devices</h3>
<p><%- deviceList.replace(/\n/g, '<br>') %> </p>
</div>
</form>
</body>
</html>