-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
fan.ts
51 lines (43 loc) · 1.5 KB
/
fan.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { BaseDeviceAccessory } from './base-device-accessory.ts'
import type { RingDevice } from 'ring-client-api'
import { hap } from './hap.ts'
import type { RingPlatformConfig } from './config.ts'
import type { PlatformAccessory } from 'homebridge'
import { logInfo } from 'ring-client-api/util'
export class Fan extends BaseDeviceAccessory {
constructor(
public readonly device: RingDevice,
public readonly accessory: PlatformAccessory,
public readonly config: RingPlatformConfig,
) {
super()
const { Characteristic, Service } = hap,
{ data: initialData } = this.device
this.registerCharacteristic({
characteristicType: Characteristic.On,
serviceType: Service.Fan,
getValue: (data) => Boolean(data.on),
setValue: (value) => this.setOnState(value),
})
if (initialData.level !== undefined) {
this.registerLevelCharacteristic({
characteristicType: Characteristic.RotationSpeed,
serviceType: Service.Fan,
getValue: (data) => {
return data.level && !isNaN(data.level) ? 100 * data.level : 0
},
setValue: (value) => this.setLevelState(value),
})
}
}
setOnState(on: boolean) {
logInfo(`Turning ${this.device.name} ${on ? 'On' : 'Off'}`)
return this.device.setInfo({ device: { v1: { on } } })
}
setLevelState(level: number) {
logInfo(`Setting speed of ${this.device.name} to ${level}%`)
return this.device.setInfo({
device: { v1: { level: level / 100 } },
})
}
}