@zswuwing/homebridge-wyze-smart-home
Version:
Wyze Smart Home plugin for Homebridge
54 lines (41 loc) • 1.51 kB
JavaScript
const { Service, Characteristic } = require('../types')
const WyzeAccessory = require('./WyzeAccessory')
const WYZE_API_POWER_PROPERTY = 'P3'
const noResponse = new Error('No Response')
noResponse.toString = () => { return noResponse.message }
module.exports = class WyzeCamera extends WyzeAccessory {
constructor (plugin, homeKitAccessory) {
super(plugin, homeKitAccessory)
this.getOnCharacteristic().on('set', this.set.bind(this))
}
updateCharacteristics (device) {
if (device.conn_state === 0) {
this.getOnCharacteristic().updateValue(noResponse)
} else {
this.getOnCharacteristic().updateValue(device.device_params.power_switch)
}
}
getSwitchService () {
let service = this.homeKitAccessory.getService(Service.Switch)
if (!service) {
service = this.homeKitAccessory.addService(Service.Switch)
}
return service
}
getOnCharacteristic () {
return this.getSwitchService().getCharacteristic(Characteristic.On)
}
async set (value, callback) {
if(this.plugin.config.logging == "debug") this.plugin.log(`Setting power for ${this.homeKitAccessory.context.mac} (${this.homeKitAccessory.context.nickname}) to ${value}`)
try {
if (value === true) {
await this.runActionListOnOff(WYZE_API_POWER_PROPERTY, value ? 1 : 0, 'power_on')
} else {
await this.runActionListOnOff(WYZE_API_POWER_PROPERTY, value ? 1 : 0, 'power_off')
}
callback()
} catch (e) {
callback(e)
}
}
}