mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-18 14:56:53 +00:00
Update for Number platform (#23313)
This commit is contained in:
parent
6af844a42a
commit
d74ecc3e6f
@ -4,6 +4,7 @@ description: Plugwise Smile platform integration.
|
|||||||
ha_category:
|
ha_category:
|
||||||
- Binary Sensor
|
- Binary Sensor
|
||||||
- Climate
|
- Climate
|
||||||
|
- Number
|
||||||
- Select
|
- Select
|
||||||
- Sensor
|
- Sensor
|
||||||
- Switch
|
- Switch
|
||||||
@ -21,6 +22,7 @@ ha_platforms:
|
|||||||
- binary_sensor
|
- binary_sensor
|
||||||
- climate
|
- climate
|
||||||
- diagnostics
|
- diagnostics
|
||||||
|
- number
|
||||||
- select
|
- select
|
||||||
- sensor
|
- sensor
|
||||||
- switch
|
- switch
|
||||||
@ -37,6 +39,7 @@ Platforms available - depending on your Smile and setup include:
|
|||||||
- `binary_sensor` (for showing the status of e.g. domestic hot water heating or secondary heater)
|
- `binary_sensor` (for showing the status of e.g. domestic hot water heating or secondary heater)
|
||||||
- `switch` (for Plugs connected to Adam or Stealths and Circles connected to a Stretch)
|
- `switch` (for Plugs connected to Adam or Stealths and Circles connected to a Stretch)
|
||||||
- `select` (for changing a thermostat schedule)
|
- `select` (for changing a thermostat schedule)
|
||||||
|
- `number` (for changing a boiler setpoint)
|
||||||
|
|
||||||
The password can be found on the bottom of your Smile or Stretch, the ID, it should consist of 8 characters. To find your IP address use the Plugwise App:
|
The password can be found on the bottom of your Smile or Stretch, the ID, it should consist of 8 characters. To find your IP address use the Plugwise App:
|
||||||
|
|
||||||
@ -117,6 +120,22 @@ script:
|
|||||||
option: "Regulier"
|
option: "Regulier"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Change boiler setpoint
|
||||||
|
|
||||||
|
Service: `number.set_value`
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example script change the boiler setpoint
|
||||||
|
script:
|
||||||
|
change_max_boiler_tempeture_setpoint:
|
||||||
|
sequence:
|
||||||
|
- service: number.set_value
|
||||||
|
target:
|
||||||
|
entity_id: number.opentherm_max_boiler_temperature_setpoint
|
||||||
|
data:
|
||||||
|
value: 60
|
||||||
|
```
|
||||||
|
|
||||||
#### Set temperature
|
#### Set temperature
|
||||||
|
|
||||||
Service: `climate.set_temperature`
|
Service: `climate.set_temperature`
|
||||||
@ -139,7 +158,7 @@ script:
|
|||||||
|
|
||||||
Service: `climate.set_preset_mode`
|
Service: `climate.set_preset_mode`
|
||||||
|
|
||||||
Available options include: `home`, `vacation`, `no_frost`, `asleep` & `away`.
|
Available options include: `home`, `vacation` (Anna only), `no_frost`, `asleep` & `away`.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user