@pmouli/isy-matter-server
Version:
Service to expose an ISY device as a Matter Border router
81 lines (75 loc) • 3.15 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 = IrLincTx.Commands.Type;
type Drivers = IrLincTx.Drivers.Type;
export class IrLincTx extends Base<Drivers, Commands> implements IrLincTx.Interface {
public override readonly commands = {
BEEP: this.beep,
WDU: this.writeChanges
};
static override nodeDefId = "IRLincTx";
static override implements = ['IRLincTx', "SirenAlert", "SirenArm"];
declare readonly nodeDefId: 'IRLincTx';
constructor (isy: ISY, nodeInfo: NodeInfo<Family.Insteon>) {
super(isy, nodeInfo);
this.drivers.ERR = Driver.create("ERR", this, nodeInfo.state['ERR'], { uom: UnitOfMeasure.Index, label: "Responding", name: "responding" });
}
async beep(value?: number) { return this.sendCommand("BEEP", [value, UnitOfMeasure.LevelFrom0To255]); }
async writeChanges() { return this.sendCommand("WDU"); }
public get responding(): Insteon.Error {
return this.drivers.ERR?.value;
}
}
NodeFactory.register(IrLincTx);
export namespace IrLincTx {
export interface Interface extends Omit<InstanceType<typeof IrLincTx>, keyof ISYDeviceNode<any, any, any, any>> {
}
export function is(node: ISYNode<any, any, any, any>): node is IrLincTx {
return ['IRLincTx'].includes(node.nodeDefId);
}
export function isImplementedBy(node: ISYNode<any, any, any, any>): node is IrLincTx {
return ['IRLincTx', "Thermostat", "TempLinc", "DimmerMotorSwitch", "DimmerMotorSwitch_ADV", "DimmerLampSwitch", "DimmerLampSwitch_ADV", "DimmerLampSwitchLED", "DimmerLampSwitchLED_ADV", "DimmerLampOnly", "KeypadDimmer", "KeypadDimmer_ADV", "BallastRelayLampSwitch", "BallastRelayLampSwitch_ADV", "RelayLampSwitch", "RelayLampSwitch_ADV", "RelayLampSwitchLED", "RelayLampSwitchLED_ADV", "RelaySwitchOnlyPlusQuery", "RelaySwitchOnlyPlusQuery_ADV", "RelaySwitchOnly", "RelaySwitchOnly_ADV", "RelayLampOnly", "RelayLampOnly_ADV", "KeypadRelay", "KeypadRelay_ADV"].includes(node.nodeDefId);
}
export function create(isy: ISY, nodeInfo: NodeInfo<Family.Insteon>) {
return new IrLincTx(isy, nodeInfo);
}
export const Node = IrLincTx;
export const Class = IrLincTx;
export namespace Commands {
export type Type = {
BEEP: ((value?: number) => Promise<boolean>) & {
label: "Beep";
name: "beep";
};
WDU: (() => Promise<boolean>) & {
label: "Write Changes";
name: "writeChanges";
};
};
}
export enum Commands {
beep = 'BEEP',
writeChanges = 'WDU'
}
export namespace Drivers {
export type Type = {
ERR: {
uom: UnitOfMeasure.Index;
value: Insteon.Error;
label: "Responding";
name: "responding";
};
};
}
export enum Drivers {
responding = 'ERR'
}
}