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
Copy file name to clipboardExpand all lines: source/_components/climate.knx.markdown
+24-4Lines changed: 24 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ climate:
27
27
temperature_address: '5/1/1'
28
28
setpoint_shift_address: '5/1/2'
29
29
setpoint_shift_state_address: '5/1/3'
30
-
target_temperature_address: '5/1/4'
30
+
target_temperature_state_address: '5/1/4'
31
31
operation_mode_address: '5/1/5'
32
32
```
33
33
@@ -41,17 +41,33 @@ climate:
41
41
temperature_address: '5/1/1'
42
42
setpoint_shift_address: '5/1/2'
43
43
setpoint_shift_state_address: '5/1/3'
44
+
target_temperature_state_address: '5/1/4'
45
+
operation_mode_frost_protection_address: '5/1/5'
46
+
operation_mode_night_address: '5/1/6'
47
+
operation_mode_comfort_address: '5/1/7'
48
+
```
49
+
50
+
If your device doesn't support setpoint_shift calculations (i.e. if you don't provide a `setpoint_shift_address` value) please set the `min_temp` and `max_temp`
51
+
attributes of the climate device to avoid issues with increasing the temperature in the frontend. Please do also make sure to add the `target_temperature_address`
52
+
to the config in this case.:
53
+
54
+
```yaml
55
+
# Example configuration.yaml entry
56
+
climate:
57
+
- platform: knx
58
+
name: HASS-Kitchen.Temperature
59
+
temperature_address: '5/1/2'
44
60
target_temperature_address: '5/1/4'
61
+
target_temperature_state_address: '5/1/1'
45
62
operation_mode_frost_protection_address: '5/1/5'
46
63
operation_mode_night_address: '5/1/6'
47
64
operation_mode_comfort_address: '5/1/7'
65
+
min_temp: 7.0
66
+
max_temp: 32.0
48
67
```
49
68
50
69
`operation_mode_frost_protection_address`/ `operation_mode_night_address` / `operation_mode_comfort_address` are not necessary if `operation_mode_address` is specified.
51
70
52
-
If your device doesn't support setpoint_shift calculations (i.e. if you don't provide a `setpoint_shift_address` value) please set the `min_temp` and `max_temp`
53
-
attributes of the climate device to avoid issues with increasing the temperature in the frontend.
54
-
55
71
The following values are valid for the `operation_modes` attribute:
56
72
57
73
- Comfort (maps internally to STATE_HEAT within Home Assistant)
@@ -72,6 +88,10 @@ temperature_address:
72
88
required: true
73
89
type: string
74
90
target_temperature_address:
91
+
description: KNX group address for setting target temperature.
92
+
required: false
93
+
type: string
94
+
target_temperature_state_address:
75
95
description: KNX group address for reading current target temperature from KNX bus.
0 commit comments