forked from dgreif/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thermostat.ts
232 lines (214 loc) · 9.27 KB
/
thermostat.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import { PlatformAccessory } from 'homebridge'
import { Observable, combineLatest } from 'rxjs'
import { distinctUntilChanged, map, switchMap } from 'rxjs/operators'
import { RingDevice, RingDeviceType, ThermostatMode } from 'ring-client-api'
import { logDebug, logError, logInfo } from 'ring-client-api/util'
import { BaseDeviceAccessory } from './base-device-accessory'
import { RingPlatformConfig } from './config'
import { hap } from './hap'
export class Thermostat extends BaseDeviceAccessory {
private onTemperature: Observable<number | undefined>
constructor(
public readonly device: RingDevice,
public readonly accessory: PlatformAccessory,
public readonly config: RingPlatformConfig
) {
super()
const { Characteristic, Service } = hap
// Component Device (Temperature Sensor)
this.onTemperature = this.device.onComponentDevices.pipe(
switchMap((devices) => {
const temperatureSensor = devices.find(
({ deviceType }) => deviceType === RingDeviceType.TemperatureSensor
)
if (!temperatureSensor) {
return []
}
logDebug(
`Discovered a component temperature sensor for ${this.device.name}`
)
return temperatureSensor.onData.pipe(
map(({ celsius: temperature }) => {
logDebug(
`Component temperature sensor for ${this.device.name} reported ${temperature} degrees`
)
return temperature
}),
distinctUntilChanged()
)
})
)
// Required Characteristics
this.registerObservableCharacteristic({
characteristicType: Characteristic.CurrentHeatingCoolingState,
serviceType: Service.Thermostat,
onValue: combineLatest([this.onTemperature, this.device.onData]).pipe(
map(([temperature, { setPoint, mode }]) => {
if (mode === 'off') {
// The thermostat is set to 'off', so the thermostat is neither heating nor cooling
return Characteristic.CurrentHeatingCoolingState.OFF
}
if (!temperature || !setPoint) {
logError(
`Could not determine 'CurrentHeatingCoolingState' for ${this.device.name} given temperature: ${temperature}, set point: ${setPoint} and mode: ${mode}. Reporting 'off' state as a fallback.`
)
return Characteristic.CurrentHeatingCoolingState.OFF
}
// Checking with a threshold to avoid floating point weirdness
const currentTemperatureEqualsTarget =
Math.abs(temperature - setPoint) < 0.1,
currentTemperatureIsHigherThanTarget =
temperature - setPoint >= 0.1,
currentTemperatureIsLowerThanTarget = temperature - setPoint <= -0.1
if (currentTemperatureEqualsTarget) {
// The target temperature has been reached, so the thermostat is neither heating nor cooling
return Characteristic.CurrentHeatingCoolingState.OFF
}
if (currentTemperatureIsHigherThanTarget && mode === 'cool') {
// The current temperature is higher than the target temperature,
// and the thermostat is set to 'cool', so the thermostat is cooling
return Characteristic.CurrentHeatingCoolingState.COOL
}
if (
currentTemperatureIsLowerThanTarget &&
(mode === 'heat' || mode === 'aux')
) {
// The current temperature is lower than the target temperature,
// and the thermostat is set to 'heat' or 'aux' (emergency heat), so the thermostat is heating
return Characteristic.CurrentHeatingCoolingState.HEAT
}
// The current temperature is either higher or lower than the target temperature,
// but the current thermostat mode would only increase the difference,
// so the thermostat is neither heating nor cooling
return Characteristic.CurrentHeatingCoolingState.OFF
})
),
})
this.registerCharacteristic({
characteristicType: Characteristic.TargetHeatingCoolingState,
serviceType: Service.Thermostat,
getValue: ({ mode }) => {
switch (mode) {
case 'off':
return Characteristic.TargetHeatingCoolingState.OFF
case 'heat':
case 'aux':
return Characteristic.TargetHeatingCoolingState.HEAT
case 'cool':
return Characteristic.TargetHeatingCoolingState.COOL
}
},
setValue: (targetHeatingCoolingState: number) => {
const mode: ThermostatMode | undefined = (():
| ThermostatMode
| undefined => {
switch (targetHeatingCoolingState) {
case Characteristic.TargetHeatingCoolingState.OFF:
return 'off'
case Characteristic.TargetHeatingCoolingState.HEAT:
return 'heat'
case Characteristic.TargetHeatingCoolingState.COOL:
return 'cool'
default:
return
}
})()
if (!mode) {
logError(
`Couldn’t match ${targetHeatingCoolingState} to a recognized mode string.`
)
return
}
logInfo(`Setting ${this.device.name} mode to ${mode}`)
return this.device.setInfo({ device: { v1: { mode } } })
},
})
// Only allow 'TargetHeatingCoolingState's which can be mapped to Ring modes
// Specifically, this omits .AUTO
this.getService(Service.Thermostat)
.getCharacteristic(Characteristic.TargetHeatingCoolingState)
.setProps({
validValues: [
Characteristic.TargetHeatingCoolingState.OFF,
Characteristic.TargetHeatingCoolingState.HEAT,
Characteristic.TargetHeatingCoolingState.COOL,
],
})
this.registerObservableCharacteristic({
characteristicType: Characteristic.CurrentTemperature,
serviceType: Service.Thermostat,
onValue: this.onTemperature.pipe(
map((temperature) => {
if (!temperature) {
logError(
`Could not determine 'CurrentTemperature' for ${this.device.name} given temperature: ${temperature}. Returning 22 degrees celsius as a fallback.`
)
return 22
}
// Documentation: https://developers.homebridge.io/#/characteristic/CurrentTemperature
// 'Characteristic.CurrentTemperature' supports 0.1 increments
return Number(Number(temperature).toFixed(1))
})
),
})
this.registerCharacteristic({
characteristicType: Characteristic.TargetTemperature,
serviceType: Service.Thermostat,
getValue: ({ setPoint }) => {
return setPoint
},
setValue: (setPoint: number) => {
logInfo(`Setting ${this.device.name} target temperature to ${setPoint}`)
// Documentation: https://developers.homebridge.io/#/characteristic/TargetTemperature
// 'Characteristic.TargetTemperature' has a valid range from 10 to 38 degrees celsius,
// but devices may support a different range. When limits differ, accept the more strict.
const setPointMin = Math.max(this.device.data.setPointMin || 10, 10),
setPointMax = Math.min(this.device.data.setPointMax || 38, 38)
if (setPoint < setPointMin || setPoint > setPointMax) {
logError(
`Ignoring request to set ${this.device.name} target temperature to ${setPoint}. Target temperature must be between ${setPointMin} and ${setPointMax}.`
)
return
}
return this.device.setInfo({ device: { v1: { setPoint } } })
},
})
if (this.device.data.setPointMin || this.device.data.setPointMax) {
// Documentation: https://developers.homebridge.io/#/characteristic/TargetTemperature
// 'Characteristic.TargetTemperature' has a valid range from 10 to 38 degrees celsius,
// but devices may support a different range. When limits differ, accept the more strict.
const setPointMin = Math.max(this.device.data.setPointMin || 10, 10),
setPointMax = Math.min(this.device.data.setPointMax || 38, 38)
logDebug(
`Setting ${this.device.name} target temperature range to ${setPointMin}–${setPointMax}`
)
this.getService(Service.Thermostat)
.getCharacteristic(Characteristic.TargetTemperature)
.setProps({
minValue: setPointMin,
maxValue: setPointMax,
validValueRanges: [setPointMin, setPointMax],
})
}
this.registerCharacteristic({
characteristicType: Characteristic.TemperatureDisplayUnits,
serviceType: Service.Thermostat,
getValue: () => {
// Neither thermostats nor their component devices (e.g. temperature sensors)
// appear to include the unit preference. Hardcoding Fahrenheit as the default.
return Characteristic.TemperatureDisplayUnits.FAHRENHEIT
},
setValue: () => {
// noop
// Setting display unit is unsupported
},
})
// Setting 'TemperatureDisplayUnits' is unsupported by the Ring API.
// We’ve defaulted to Fahrenheit above, so only allowing .FAHRENHEIT.
this.getService(Service.Thermostat)
.getCharacteristic(Characteristic.TemperatureDisplayUnits)
.setProps({
validValues: [Characteristic.TemperatureDisplayUnits.FAHRENHEIT],
})
}
}