Address late review comments for myuplink page (#36379)

This commit is contained in:
Åke Strandberg 2024-12-16 12:00:21 +01:00 committed by GitHub
parent d9e8f7f90a
commit 12e60a4548
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -79,11 +79,11 @@ Common use cases include:
## Example
Automation that will send a notification to a smartphone when the hot water reserve is getting low. Note that actual entity name varies between models of heat pumps. You will have to adapt the yaml code to your own installation.
Automation that will send a notification to a smartphone when the hot water reserve is getting low. In this example a temperature below 42°C in the middle of the water tank will trigger the notification. Note that actual entity name varies between models of heat pumps. You will have to adapt the yaml code to your own installation.
```yaml
automation:
alias: Notify on low hot water reserve
- alias: "Notify on low hot water reserve"
triggers:
- trigger: numeric_state
entity_id:
@ -91,11 +91,9 @@ automation:
below: 42
actions:
- action: notify.mobile_app_your_device
metadata: {}
data:
message: Hot water reserve is getting low.
title: Water heater
mode: single
message: "Hot water reserve is getting low."
title: "Water heater"
```
## Data updates