Merge remote-tracking branch 'origin/current' into next
This commit is contained in:
commit
194b8b8112
33 changed files with 330 additions and 105 deletions
|
@ -48,3 +48,4 @@ binary_sensor:
|
|||
2: opening
|
||||
4: motion
|
||||
6: moisture
|
||||
```
|
||||
|
|
|
@ -21,11 +21,16 @@ climate:
|
|||
platform: honeywell
|
||||
username: YOUR_USERNAME
|
||||
password: YOUR_PASSWORD
|
||||
scan_interval: 600
|
||||
```
|
||||
<p class='note'>
|
||||
Scan interval is expressed in seconds. Omitting scan_interval may result in too-frequent polling and cause you to rate-limited by Honeywell.
|
||||
</p>
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **username** (*Required*): The username of an user with access.
|
||||
- **password** (*Required*): The password for your given admin account.
|
||||
- **away_temperature** (*optional*): Heating setpoint when away mode is on. If omitted it defaults to 16.0 deg C.
|
||||
- **region** (*optional*): Region identifier (either 'eu' or 'us'). Defaults to 'eu' if not provided.
|
||||
- **away_temperature** (*Optional*): Heating setpoint when away mode is on. If omitted it defaults to 16.0 deg C.
|
||||
- **region** (*Optional*): Region identifier (either 'eu' or 'us'). Defaults to 'eu' if not provided.
|
||||
- **scan_interval**(*Optional*): Scan interval is expressed in seconds. Recommended value of 600 seconds. Default value is 120 seconds. Omitting scan_interval may result in too-frequent polling and cause you to rate-limited by Honeywell.
|
||||
|
|
|
@ -35,6 +35,7 @@ Configuration variables:
|
|||
- **username** (*Required*: The username of an user with administrative privileges, usually `admin`.
|
||||
- **password** (*Optional*): The password for your given admin account (use this if no SSH key is given).
|
||||
- **protocol** (*Optional*): The protocol (`ssh` or `telnet`) to use. Defaults to `ssh`.
|
||||
- **port** (*Optional*): SSH port to use. Defaults to `22`.
|
||||
- **mode** (*Optional*): The operating mode of the router (`router` or `ap`). Defaults to `router`.
|
||||
- **ssh_key** (*Optional*): The path to your SSH private key file associated with your given admin account (instead of password).
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ sidebar: true
|
|||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: pocketcasts.png
|
||||
ha_category: Sensor
|
||||
ha_release: 0.39
|
||||
---
|
||||
|
|
|
@ -150,7 +150,7 @@ First get or learn all the remotes you want to add on HA in E-Control
|
|||
|
||||
1. Download
|
||||
|
||||
Get the script from [here](https://github.com/NightRang3r/Broadlink-e-control-db-dump5).
|
||||
Get the script from [here](https://github.com/NightRang3r/Broadlink-e-control-db-dump).
|
||||
|
||||
2. Dump the data from the app
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ To use your TPLink switch in your installation, add the following to your `confi
|
|||
# Example configuration.yaml entry
|
||||
switch:
|
||||
- platform: tplink
|
||||
host: IP_ADRRESS
|
||||
host: IP_ADDRESS
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
|
|
@ -65,11 +65,13 @@ telegram_webhooks:
|
|||
|
||||
Telegram webhooks raise an event `telegram.command` with a payload.
|
||||
|
||||
```json{
|
||||
```json
|
||||
{
|
||||
'command': '/thecommand'
|
||||
'args': 'strings after command'
|
||||
'user_id': 12345
|
||||
}
|
||||
```
|
||||
|
||||
Automation example that realize simple test to command/notify interaction.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue