forked from dgreif/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flood-freeze-sensor.ts
67 lines (63 loc) · 2.12 KB
/
flood-freeze-sensor.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { BaseDeviceAccessory } from './base-device-accessory'
import { RingDevice } from '../api'
import { hap } from './hap'
import { RingPlatformConfig } from './config'
import { distinctUntilChanged, filter, map } from 'rxjs/operators'
import { Logging, PlatformAccessory } from 'homebridge'
export class FloodFreezeSensor extends BaseDeviceAccessory {
constructor(
public readonly device: RingDevice,
public readonly accessory: PlatformAccessory,
public readonly logger: Logging,
public readonly config: RingPlatformConfig
) {
super()
const {
Characteristic: { LeakDetected, OccupancyDetected },
Service: { LeakSensor, OccupancySensor },
} = hap,
leakService = this.getService(LeakSensor, `${device.name} Flood Sensor`),
freezeService = this.getService(
OccupancySensor,
`${device.name} Freeze Sensor`
),
onFloodDetected = device.onData.pipe(
map((data) => {
return data.flood && data.flood.faulted
? LeakDetected.LEAK_DETECTED
: LeakDetected.LEAK_NOT_DETECTED
}),
distinctUntilChanged()
),
onFreezeDetected = device.onData.pipe(
map((data) => {
return data.freeze && data.freeze.faulted
? OccupancyDetected.OCCUPANCY_DETECTED
: OccupancyDetected.OCCUPANCY_NOT_DETECTED
}),
distinctUntilChanged()
)
this.initSensorService(leakService)
this.registerObservableCharacteristic({
characteristicType: LeakDetected,
serviceType: leakService,
onValue: onFloodDetected,
})
onFloodDetected
.pipe(filter((faulted) => Boolean(faulted)))
.subscribe(() => {
this.logger.info(device.name + ' Detected Flooding')
})
this.initSensorService(freezeService)
this.registerObservableCharacteristic({
characteristicType: OccupancyDetected,
serviceType: freezeService,
onValue: onFreezeDetected,
})
onFreezeDetected
.pipe(filter((faulted) => Boolean(faulted)))
.subscribe(() => {
this.logger.info(device.name + ' Detected Freezing')
})
}
}