forked from dgreif/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outlet.ts
37 lines (31 loc) · 1.07 KB
/
outlet.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { BaseDeviceAccessory } from './base-device-accessory'
import { RingDevice } from '../api'
import { hap } from './hap'
import { RingPlatformConfig } from './config'
import { Logging, PlatformAccessory } from 'homebridge'
export class Outlet extends BaseDeviceAccessory {
constructor(
public readonly device: RingDevice,
public readonly accessory: PlatformAccessory,
public readonly logger: Logging,
public readonly config: RingPlatformConfig
) {
super()
const { Characteristic, Service } = hap
this.registerCharacteristic({
characteristicType: Characteristic.On,
serviceType: Service.Outlet,
getValue: (data) => Boolean(data.on),
setValue: (value) => this.setOnState(value),
})
this.registerCharacteristic({
characteristicType: Characteristic.OutletInUse,
serviceType: Service.Outlet,
getValue: (data) => Boolean(data.on),
})
}
setOnState(on: boolean) {
this.logger.info(`Turning ${this.device.name} ${on ? 'On' : 'Off'}`)
return this.device.setInfo({ device: { v1: { on } } })
}
}