UNPKG

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.

10 lines (8 loc) 322 B
import type { NodeInfo } from '../../Model/NodeInfo.js'; import type { Family, ISY } from '../../ISY.js'; import { DimmerLamp } from './Generated/DimmerLamp.js'; export class InsteonDimmerOutletDevice extends DimmerLamp.Node { constructor(isy: ISY, deviceNode: NodeInfo<Family.Insteon>) { super(isy, deviceNode); } }