forked from openhab/openhab-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Documentation] Markdown improvements t to z (openhab#14371)
* Apply markdown fixes for bindings with letter _t_ * Apply markdown fixes for bindings with letter _u_ * Apply markdown fixes for bindings with letter _v_ * Apply markdown fixes for bindings with letter _w_ * Apply markdown fixes for bindings with letter _x_ * Apply markdown fixes for bindings with letter _y_ * Apply markdown fixes for bindings with letter _z_ Signed-off-by: Jerome Luckenbach <[email protected]>
- Loading branch information
1 parent
1fde675
commit 0956e67
Showing
54 changed files
with
1,655 additions
and
1,778 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,9 @@ Parameter | Required | Description | |
`username` | yes | Username used to log in at [my.tado](https://my.tado.com) | ||
`password` | yes | Password of the username | ||
|
||
|
||
Example `tado.things` | ||
|
||
``` | ||
```java | ||
Bridge tado:home:demo [ username="[email protected]", password="secret" ] | ||
``` | ||
|
||
|
@@ -32,7 +31,7 @@ Name | Type | Description | Read/Write | |
|
||
## `zone` Thing | ||
|
||
A *zone* is an area/room of your home. | ||
A _zone_ is an area/room of your home. | ||
You have defined them during installation. | ||
One zone relates to one page in the tado° mobile- or webapp. | ||
|
||
|
@@ -46,7 +45,7 @@ Zones can either be added through discovery or manually. Following up on the abo | |
|
||
Example `tado.things` | ||
|
||
``` | ||
```java | ||
Bridge tado:home:demo [ username="[email protected]", password="secret" ] { | ||
zone heating [id=1] | ||
zone ac [id=2] | ||
|
@@ -121,7 +120,7 @@ If parts of the setting are missing, then the currently active zone setting is u | |
|
||
If the termination condition is missing, the binding first checks if an override is active. | ||
If that is the case, the existing termination condition is used. | ||
An existing timer, for example, just keeps running. | ||
An existing timer, for example, just keeps running. | ||
In case the zone is currently in smart-schedule mode and thus doesn't have a termination condition, then the default termination condition is used, as configured in the tado° app (settings -> select zone -> manual control on tado° device). | ||
|
||
## `mobiledevice` Thing | ||
|
@@ -138,7 +137,7 @@ It is again easiest to refer to discovery in order to find the `id`. | |
|
||
Example `tado.things`: | ||
|
||
``` | ||
```java | ||
Bridge tado:home:demo [ username="[email protected]", password="secret" ] { | ||
mobiledevice phone [id=12345] | ||
} | ||
|
@@ -150,13 +149,13 @@ Name | Type | Description | Read/Write | |
-|-|-|- | ||
`atHome` | Switch | ON if mobile device is in HOME mode, OFF if AWAY | R | ||
|
||
Group `OR` can be used to define an item for *'is any device at home'*. | ||
Group `OR` can be used to define an item for _'is any device at home'_. | ||
|
||
# Full Example | ||
|
||
## tado.things | ||
|
||
``` | ||
```java | ||
Bridge tado:home:demo [ username="[email protected]", password="secret" ] { | ||
zone heating [id=1] | ||
zone ac [id=2] | ||
|
@@ -168,7 +167,7 @@ Bridge tado:home:demo [ username="[email protected]", password="secret" ] { | |
|
||
## tado.items | ||
|
||
``` | ||
```java | ||
Switch TADO_PRESENCE_home "Tado Presence: [MAP(presence.map):%s]" { channel="tado:home:demo:homePresence" } | ||
Number:Temperature HEAT_inside_temperature "Inside Temperature" { channel="tado:zone:demo:heating:currentTemperature" } | ||
Number HEAT_humidity "Humidity" { channel="tado:zone:demo:heating:humidity" } | ||
|
@@ -203,7 +202,7 @@ Switch Phone_atHome "Phone location [MAP(presence.map) | |
|
||
## tado.sitemap | ||
|
||
``` | ||
```perl | ||
sitemap tado label="Tado" | ||
{ | ||
Frame label="Status" { | ||
|
@@ -255,7 +254,7 @@ sitemap tado label="Tado" | |
|
||
## presence.map | ||
|
||
``` | ||
```text | ||
ON=at home | ||
OFF=away | ||
NULL=lost | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ To satisfy this requirement while keeping the device isolated, your router shoul | |
|
||
## Discovery | ||
|
||
Discovery is done by connecting to the Tapo-Cloud Service. | ||
Discovery is done by connecting to the Tapo-Cloud Service. | ||
All devices stored in your cloud account will be detected even if they are not in your network. | ||
You need to know the IP-Adress of your device. This must be set manually in the thing configuration | ||
|
||
|
@@ -59,7 +59,6 @@ The thing has the following configuration parameters: | |
| ipAddress | IP Address of the device. | | ||
| pollingInterval | Refresh interval in seconds. Optional. The default is 30 seconds | | ||
|
||
|
||
## Channels | ||
|
||
All devices support some of the following channels: | ||
|
@@ -80,18 +79,16 @@ All devices support some of the following channels: | |
| | todayEnergyUsage | Number:Energy | used energy today (Wh) | P110, P115 | | ||
| | todayRuntime | Number:Time | seconds output was on today | P110, P115 | | ||
|
||
|
||
## Channel Refresh | ||
|
||
When the thing receives a `RefreshType` command the thing will send a new refreshRequest over http. | ||
To minimize network traffic the default refresh-rate is set to 30 seconds. This can be reduced down to 10 seconds in advanced settings of the device. If any command was sent to a channel, it will do an immediately refresh of the whole device. | ||
|
||
|
||
## Full Example | ||
|
||
### tapocontrol.things: | ||
|
||
``` | ||
```java | ||
tapocontrol:bridge:myTapoBridge "Cloud-Login" [ username="[email protected]", password="verysecret" ] | ||
tapocontrol:P100:myTapoBridge:mySocket "My-Socket" (tapocontrol:bridge:myTapoBridge) [ ipAddress="192.168.178.150", pollingInterval=30 ] | ||
tapocontrol:L510:myTapoBridge:whiteBulb "white-light" (tapocontrol:bridge:myTapoBridge) [ ipAddress="192.168.178.151", pollingInterval=30 ] | ||
|
@@ -105,6 +102,6 @@ Bridge tapocontrol:bridge:secondBridgeExample "Cloud-Login" [ | |
|
||
### tapocontrol.items: | ||
|
||
``` | ||
```java | ||
Switch TAPO_SOCKET "socket" { channel="tapocontrol:P100:myTapoBridge:mySocket:actuator#output" } | ||
``` | ||
``` |
Oops, something went wrong.