WIP wifi modem settings

This commit is contained in:
2025-10-02 22:53:38 +01:00
parent e11d914c5e
commit 054b0bf4ea
6 changed files with 174 additions and 70 deletions

View File

@@ -261,3 +261,22 @@ export type ZoomLevel = {
py: number;
level?: number;
};
export type WifiSettingValues = {
ssid: string;
password: string;
encryption: string;
};
export type WifiConfig = {
id: string;
configHash: string;
propSSID: {
value: string;
datatype: string;
};
propPassword: {
value: string;
datatype: string;
};
};