Add flags to optimize EC device handling

This commit is contained in:
Timo
2025-05-16 15:50:19 +02:00
parent abf683f275
commit 35963bbc9e
3 changed files with 14 additions and 4 deletions

View File

@@ -22,6 +22,9 @@ export interface OutputDevice {
id: string;
name: string;
forEarpiece?: boolean;
isEarpiece?: boolean;
isSpeaker?: boolean;
isBluetooth?: boolean;
}
export const setPipEnabled$ = new Subject<boolean>();