forked from dgreif/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smoke-co-listener.ts
42 lines (38 loc) · 1.3 KB
/
smoke-co-listener.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
import { BaseDeviceAccessory } from './base-device-accessory'
import { RingDevice } from 'ring-client-api'
import { hap } from './hap'
import { RingPlatformConfig } from './config'
import { PlatformAccessory } from 'homebridge'
export class SmokeCoListener extends BaseDeviceAccessory {
constructor(
public readonly device: RingDevice,
public readonly accessory: PlatformAccessory,
public readonly config: RingPlatformConfig
) {
super()
const {
Characteristic: { SmokeDetected, CarbonMonoxideDetected },
Service: { SmokeSensor, CarbonMonoxideSensor },
} = hap
this.registerCharacteristic({
characteristicType: SmokeDetected,
serviceType: SmokeSensor,
getValue: (data) => {
return data.smoke && data.smoke.alarmStatus === 'active'
? SmokeDetected.SMOKE_DETECTED
: SmokeDetected.SMOKE_NOT_DETECTED
},
})
this.registerCharacteristic({
characteristicType: CarbonMonoxideDetected,
serviceType: CarbonMonoxideSensor,
getValue: (data) => {
return data.co && data.co.alarmStatus === 'active'
? CarbonMonoxideDetected.CO_LEVELS_ABNORMAL
: CarbonMonoxideDetected.CO_LEVELS_NORMAL
},
})
this.initSensorService(SmokeSensor)
this.initSensorService(CarbonMonoxideSensor)
}
}