homebridge-connect-my-pool-home-automation
Version:
HomeKit integration for Astral Viron Gateway via Home Automation
15 lines • 554 B
JavaScript
;
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