Added support for WRT-10 as a Device Automation
This commit is contained in:
parent
36e5c62b4f
commit
5a21290364
8 changed files with 174 additions and 22 deletions
14
plejd/types/DeviceRegistry.d.ts
vendored
14
plejd/types/DeviceRegistry.d.ts
vendored
|
|
@ -19,3 +19,17 @@ export interface OutputDevice {
|
|||
version: string;
|
||||
uniqueId: string;
|
||||
}
|
||||
|
||||
export type InputDevices = { [deviceIdAndOutput: string]: InputDevice };
|
||||
|
||||
export interface InputDevice {
|
||||
bleOutputAddress: number;
|
||||
deviceId: string;
|
||||
name: string;
|
||||
input: number;
|
||||
roomId: string;
|
||||
type: string;
|
||||
typeName: string;
|
||||
version: string;
|
||||
uniqueId: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue