add Developer Mode and value to API Call

This commit is contained in:
proddy
2024-10-20 15:01:08 +02:00
parent 685dec4c8e
commit bd08b7e0e4
2 changed files with 12 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ export interface Settings {
modbus_port: number;
modbus_max_clients: number;
modbus_timeout: number;
developer_mode: boolean;
}
export enum busConnectionStatus {
@@ -273,6 +274,7 @@ export interface APIcall {
device: string;
cmd: string;
id: number;
value?: string; // optional
}
export interface Action {