-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
smoke-alarm.ts
32 lines (28 loc) · 906 Bytes
/
smoke-alarm.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
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'
export class SmokeAlarm extends BaseDeviceAccessory {
constructor(
public readonly device: RingDevice,
public readonly accessory: PlatformAccessory,
public readonly config: RingPlatformConfig,
) {
super()
const {
Characteristic: { SmokeDetected },
Service: { SmokeSensor },
} = hap
this.registerCharacteristic({
characteristicType: SmokeDetected,
serviceType: SmokeSensor,
getValue: (data) => {
return data.alarmStatus === 'active'
? SmokeDetected.SMOKE_DETECTED
: SmokeDetected.SMOKE_NOT_DETECTED
},
})
this.initSensorService(SmokeSensor)
}
}