Skip to content

Commit

Permalink
Doc: Temperature Sensors
Browse files Browse the repository at this point in the history
  • Loading branch information
steinerthomas authored Nov 7, 2024
1 parent 958ed4f commit cf8aa60
Showing 1 changed file with 25 additions and 14 deletions.
39 changes: 25 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,28 +80,39 @@ A list of currently supported variables parsed from the easy installation export
| On/Off status | state_address |
| Dim value status | brightness_state_address |

#### Temperature Sensors
| easy installation export name (all languages) | HomeAssistant variable |
| --------------------------------------------- | ------------------------ |
| Indoor temperature | state_address |

### Configure HomeAssistant
Include generated HomeAssistant configuration to your HomeAssistant installation. Now all entities should show up in the Overview Dashboard. Create your own Dashboards to group your entities.

#### Example generated knx.yaml
```yaml
cover:
- name: "Kitchen blinds"
move_long_address: 5122 # 2/4/2 - Up/Down
stop_address: 5124 # 2/4/5 - Step/Stop
position_address: 5124 # 2/4/4 - Position control
angle_address: 5121 # 2/4/1 - Slat angle control
position_state_address: 50179 # 24/4/3 - Position control status
angle_state_address: 50177 # 24/4/1 - Slat angle control status
#travelling_time_down: 120 # not parsed
#travelling_time_up: 120 # not parsed
- name: "Kitchen blinds"
move_long_address: 5122 # 2/4/2 - Up/Down
stop_address: 5124 # 2/4/5 - Step/Stop
position_address: 5124 # 2/4/4 - Position control
angle_address: 5121 # 2/4/1 - Slat angle control
position_state_address: 50179 # 24/4/3 - Position control status
angle_state_address: 50177 # 24/4/1 - Slat angle control status
#travelling_time_down: 120 # not parsed
#travelling_time_up: 120 # not parsed
# ...
light:
- name: "Living room light dimmable"
address: 5220 # 2/4/100 - On/Off
brightness_address: 5222 # 2/4/102 - Dim value (optional)
state_address: 50262 # 24/4/86 - On/Off status
brightness_state_address: 50261 # 24/4/85 - Dim value status (optional)
- name: "Living room light dimmable"
address: 5220 # 2/4/100 - On/Off
brightness_address: 5222 # 2/4/102 - Dim value (optional)
state_address: 50262 # 24/4/86 - On/Off status
brightness_state_address: 50261 # 24/4/85 - Dim value status (optional)
# ...
sensor:
- name: "Bathroom"
state_address: 50376 # 24/4/200 - Indoor temperature
type: "temperature"
state_class: "measurement"
# ...
```

Expand Down

0 comments on commit cf8aa60

Please sign in to comment.