isy-nodejs
Version:
Node.js wrapper for ISY interface including websockets for change notifications. Fork of isy-js by Rod Toll. Designed to be used in a node.js application.
26 lines (23 loc) • 404 B
text/typescript
import { EventType } from '../../Events/EventType.js';
import { ISYEvent } from '../../Events/ISYEvent.js';
export enum Family {
Generic = -1,
Global = 0,
Insteon = 1,
UPB = 2,
ZigBeeLegacy = 3,
ZWaveLegacy = 4,
AutoDR = 5,
Scene = 6,
UDI = 7,
Brultech = 8,
NCD = 9,
Poly = 10,
Lutron = 11,
ZWave = 12,
ZigBee = 14,
ZMatter = 15,
}
export interface Insteon {
family: Family.Insteon;
}