Enhance audio settings: Added loudness controls and headphone model synchronization. Updated PeqState interface to include peq filters. Improved EQPage to dynamically load headphone models based on device state.

This commit is contained in:
yangy
2026-04-01 16:29:52 +08:00
parent 30db710093
commit 502f708336
11 changed files with 181 additions and 74 deletions
+4
View File
@@ -114,6 +114,10 @@ export interface PeqFilter {
export interface PeqState {
filters: PeqFilter[];
peq?: Array<{
name: string;
filters?: PeqFilter[];
}>;
}
// ============================================================