UNPKG

homebridge-connect-my-pool-home-automation

Version:
15 lines 554 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LightingZoneDevice = void 0; class LightingZoneDevice { constructor(config, name) { this.deviceType = LightingZoneDevice.type; this.deviceName = name + ' Light'; this.deviceTypeNumber = config.lighting_zone_number; this.data = config; this.category = 5 /* LIGHTBULB */; } } exports.LightingZoneDevice = LightingZoneDevice; LightingZoneDevice.type = 'Lighting'; //# sourceMappingURL=lightingZoneDevice.js.map