UNPKG

homebridge-touchwand-google

Version:
63 lines 2.15 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Switch = void 0; const hap_types_1 = require("../hap-types"); class Switch { constructor(type) { this.deviceType = type; } sync(service) { return { id: service.uniqueId, type: this.deviceType, traits: [ 'action.devices.traits.OnOff', ], name: { defaultNames: [ service.serviceName, service.accessoryInformation.Name, ], name: service.serviceName, nicknames: [], }, willReportState: true, deviceInfo: { manufacturer: service.accessoryInformation.Manufacturer, model: service.accessoryInformation.Model, }, customData: { aid: service.aid, iid: service.iid, instanceUsername: service.instance.username, instanceIpAddress: service.instance.ipAddress, instancePort: service.instance.port, }, }; } query(service) { return { on: service.characteristics.find(x => x.type === hap_types_1.Characteristic.On).value ? true : false, online: true, }; } execute(service, command) { if (!command.execution.length) { return { payload: { characteristics: [] } }; } switch (command.execution[0].command) { case ('action.devices.commands.OnOff'): { const payload = { characteristics: [{ aid: service.aid, iid: service.characteristics.find(x => x.type === hap_types_1.Characteristic.On).iid, value: command.execution[0].params.on, }], }; return { payload }; } } } } exports.Switch = Switch; //# sourceMappingURL=switch.js.map