fix: increase speaker, TTS, and media volume defaults#2
Open
kiwipaulrob wants to merge 2 commits into
Open
Conversation
Author
|
Greetings. A present from my AI (Tasklet) to your AI. Thanks for great work |
Author
|
and... | configure.sh | State file seed: TTS 90→100, Media 75→90 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The voice assistant and media playback volumes were too low to be clearly audible. Three issues combined to cause this:
1. Broken speaker initialisation —
configure.shusedamixer sset 'Speaker' 94%which silently fails on the WM8960 (as noted in CLAUDE.md, this control requirescset numid=13).2. Hardware speaker below maximum —
numid=13was set to122,122in two places. The range is 0–127 (127 = +5 dB), leaving 5 dB unused for no reason.3. Conservative software defaults — TTS at 90% and media at 75% compounded the hardware issue.
Changes
Quick fix for existing installs