@pmouli/isy-matter-server
Version:
Service to expose an ISY device as a Matter Border router
86 lines (80 loc) • 2.94 kB
text/typescript
/* THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT DIRECTLY. */
import { Family, UnitOfMeasure } from "../../../Definitions/Global/index.js";
import type { NodeInfo } from "../../../Model/NodeInfo.js";
import { ISY } from "../../../ISY.js";
import { ISYNode } from "../../../ISYNode.js";
import { ISYDeviceNode } from "../../ISYDeviceNode.js";
import { Base } from "../index.js";
import { Driver } from "../../../Definitions/Global/Drivers.js";
import { Insteon } from "../../../Definitions/index.js";
import { NodeFactory } from "../../NodeFactory.js";
type Commands = EzrainInput.Commands.Type;
type Drivers = EzrainInput.Drivers.Type;
export class EzrainInput extends Base<Drivers, Commands> implements EzrainInput.Interface {
public override readonly commands = {
WDU: this.writeChanges
};
static override nodeDefId = "EZRAIN_Input";
static override implements = ['EZRAIN_Input', "EZIO2x4_Input", "EZIO2x4_Input_ADV", "SirenAlert", "SirenArm"];
declare readonly nodeDefId: 'EZRAIN_Input' | "EZRAIN_Input_ADV";
constructor (isy: ISY, nodeInfo: NodeInfo<Family.Insteon>) {
super(isy, nodeInfo);
this.drivers.ST = Driver.create("ST", this, nodeInfo.state['ST'], { uom: UnitOfMeasure.Percent, label: "Status", name: "status" });
this.drivers.ERR = Driver.create("ERR", this, nodeInfo.state['ERR'], { uom: UnitOfMeasure.Index, label: "Responding", name: "responding" });
}
async writeChanges() { return this.sendCommand("WDU"); }
public get status(): Insteon.OnLevelRelay {
return this.drivers.ST?.value;
}
public get responding(): Insteon.Error {
return this.drivers.ERR?.value;
}
}
NodeFactory.register(EzrainInput);
NodeFactory.register(EzrainInput, "EZRAIN_Input_ADV");
export namespace EzrainInput {
export interface Interface extends Omit<InstanceType<typeof EzrainInput>, keyof ISYDeviceNode<any, any, any, any>> {
}
export function is(node: ISYNode<any, any, any, any>): node is EzrainInput {
return ['EZRAIN_Input', "EZRAIN_Input_ADV"].includes(node.nodeDefId);
}
export function isImplementedBy(node: ISYNode<any, any, any, any>): node is EzrainInput {
return ['EZRAIN_Input', "EZRAIN_Input_ADV"].includes(node.nodeDefId);
}
export function create(isy: ISY, nodeInfo: NodeInfo<Family.Insteon>) {
return new EzrainInput(isy, nodeInfo);
}
export const Node = EzrainInput;
export const Class = EzrainInput;
export namespace Commands {
export type Type = {
WDU: (() => Promise<boolean>) & {
label: "Write Changes";
name: "writeChanges";
};
};
}
export enum Commands {
writeChanges = 'WDU'
}
export namespace Drivers {
export type Type = {
ST: {
uom: UnitOfMeasure.Percent;
value: Insteon.OnLevelRelay;
label: "Status";
name: "status";
};
ERR: {
uom: UnitOfMeasure.Index;
value: Insteon.Error;
label: "Responding";
name: "responding";
};
};
}
export enum Drivers {
status = 'ST',
responding = 'ERR'
}
}