You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| temperature | Number:Temperature| The current temperature reading of the thermostat |
53
+
| humidity | Number:Dimensionless| The current humidity reading of the thermostat (CT80 only) |
54
+
| mode | Number | The current operating mode of the HVAC system |
55
+
| fan_mode | Number | The current operating mode of the fan |
56
+
| program_mode | Number | The program schedule that the thermostat is running (CT80 Rev B only) |
57
+
| set_point | Number:Temperature| The current temperature set point of the thermostat |
58
+
| status | Number | Indicates the current running status of the HVAC system |
59
+
| fan_status | Number | Indicates the current fan status of the HVAC system |
60
+
| override | Number | Indicates if the normal program set-point has been manually overridden |
61
+
| hold | Switch | Indicates if the current set point temperature is to be held indefinitely |
62
+
| remote_temp | Number:Temperature| Override the internal temperature as read by the thermostat's temperature sensor; Set to -1 to return to internal temperature mode |
63
+
| day | Number | The current day of the week reported by the thermostat (0 = Monday) |
64
+
| hour | Number | The current hour of the day reported by the thermostat (24 hr) |
65
+
| minute | Number | The current minute past the hour reported by the thermostat |
66
+
| dt_stamp | String | The current day of the week and time reported by the thermostat (E HH:mm) |
67
+
| today_heat_runtime | Number:Time| The total number of minutes of heating run-time today |
68
+
| today_cool_runtime | Number:Time| The total number of minutes of cooling run-time today |
69
+
| yesterday_heat_runtime | Number:Time| The total number of minutes of heating run-time yesterday |
70
+
| yesterday_cool_runtime | Number:Time| The total number of minutes of cooling run-time yesterday |
Copy file name to clipboardExpand all lines: bundles/org.openhab.binding.radiothermostat/src/main/java/org/openhab/binding/radiothermostat/internal/RadioThermostatBindingConstants.java
+3-1
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ public class RadioThermostatBindingConstants {
Copy file name to clipboardExpand all lines: bundles/org.openhab.binding.radiothermostat/src/main/java/org/openhab/binding/radiothermostat/internal/communication/RadioThermostatConnector.java
+7-4
Original file line number
Diff line number
Diff line change
@@ -105,10 +105,11 @@ public void onComplete(@Nullable Result result) {
105
105
*
106
106
* @param the JSON attribute key for the value to be updated
107
107
* @param the value to be updated in the thermostat
108
+
* @param the end point URI to use for the command
108
109
* @return the JSON response string from the thermostat
Copy file name to clipboardExpand all lines: bundles/org.openhab.binding.radiothermostat/src/main/java/org/openhab/binding/radiothermostat/internal/discovery/RadioThermostatDiscoveryService.java
Copy file name to clipboardExpand all lines: bundles/org.openhab.binding.radiothermostat/src/main/java/org/openhab/binding/radiothermostat/internal/handler/RadioThermostatHandler.java
0 commit comments