2021-03-29 12:48:27 +02:00
|
|
|
/* eslint-disable no-use-before-define */
|
|
|
|
|
|
|
|
|
|
export type OutputDevices = { [deviceIdAndOutput: string]: OutputDevice };
|
|
|
|
|
|
|
|
|
|
export interface OutputDevice {
|
2021-03-31 20:04:45 +02:00
|
|
|
bleOutputAddress: number;
|
2021-03-29 12:48:27 +02:00
|
|
|
deviceId: string;
|
|
|
|
|
dim?: number;
|
|
|
|
|
dimmable: boolean;
|
|
|
|
|
hiddenFromRoomList?: boolean;
|
|
|
|
|
hiddenFromIntegrations?: boolean;
|
|
|
|
|
hiddenFromSceneList?: boolean;
|
|
|
|
|
name: string;
|
|
|
|
|
output: number;
|
|
|
|
|
roomId: string;
|
2021-03-31 20:04:45 +02:00
|
|
|
state: boolean | undefined;
|
2021-03-29 12:48:27 +02:00
|
|
|
type: string;
|
|
|
|
|
typeName: string;
|
|
|
|
|
version: string;
|
|
|
|
|
uniqueId: string;
|
|
|
|
|
}
|
2021-05-01 19:41:29 +02:00
|
|
|
|
|
|
|
|
export type InputDevices = { [deviceIdAndOutput: string]: InputDevice };
|
|
|
|
|
|
|
|
|
|
export interface InputDevice {
|
2021-05-05 19:02:10 +02:00
|
|
|
bleInputAddress: number;
|
2021-05-01 19:41:29 +02:00
|
|
|
deviceId: string;
|
|
|
|
|
name: string;
|
|
|
|
|
input: number;
|
|
|
|
|
roomId: string;
|
|
|
|
|
type: string;
|
|
|
|
|
typeName: string;
|
|
|
|
|
version: string;
|
|
|
|
|
uniqueId: string;
|
|
|
|
|
}
|