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
|`entity_id`| no | String, name of entity. For example: `water_heater.heater`|
36
-
37
-
Example:
38
-
39
-
```yaml
40
-
# Example script to enable Holiday Mode for a water heater.
41
-
script:
42
-
disable_holiday_mode:
43
-
sequence:
44
-
- service: osoenergy.disable_holiday_mode
45
-
target:
46
-
entity_id: water_heater.heater
47
-
```
48
-
49
-
### Service `osoenergy.enable_holiday_mode`
50
-
51
-
You can use the service `osoenergy.enable_holiday_mode` to enable Holiday Mode for a water heater for a period of time in the range from 1 to 365 days.
52
-
53
-
| Service data attribute | Optional | Description |
| `entity_id` | no | String, name of entity. For example: `water_heater.heater`|
56
-
| `duration_days` | yes | Number of days to keep Holiday Mode active (1-365). Default: `365`|
57
-
58
-
Example:
59
-
60
-
```yaml
61
-
# Example script to enable Holiday Mode for a water heater.
62
-
script:
63
-
enable_holiday_mode:
64
-
sequence:
65
-
- service: osoenergy.enable_holiday_mode
66
-
target:
67
-
entity_id: water_heater.heater
68
-
data:
69
-
duration_days: 7
70
-
```
71
-
72
29
### Service `osoenergy.get_profile`
73
30
74
31
You can use the service `osoenergy.get_profile` to get the temperature profile for a water heater. Each temperature corresponds to a given local hour during the current day. For example, a temperature at index 1 corresponds to 01:00 local time.
@@ -301,6 +258,11 @@ The **OSO Energy** integration exposes OSO Energy data as a sensor. It provides
301
258
302
259
The OSO Energy water heater integration integrates your OSO Energy devices into Home Assistant.
303
260
261
+
The water heater entity offers the following capabilities:
262
+
263
+
- Adjust target temperature
264
+
- Enable/disable away mode (will activate the "Holiday Mode" of the water heater)
0 commit comments