mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-02-04 19:34:05 +01:00
Fix alignment/indentation (#13994)
Fixes #13882 Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
This commit is contained in:
parent
d03d3e4342
commit
9b891302c8
@ -24,7 +24,7 @@ The discovery process is able to automatically discover all devices associated w
|
|||||||
Bridge has the following configuration parameters:
|
Bridge has the following configuration parameters:
|
||||||
|
|
||||||
| Parameter | Description | Required
|
| Parameter | Description | Required
|
||||||
|------------------|-------------------------------------------------------|----------
|
|------------------|--------------------------------------------------------|----------
|
||||||
| apikey | API Key from <https://api.foobot.io/apidoc/index.html> | Mandatory
|
| apikey | API Key from <https://api.foobot.io/apidoc/index.html> | Mandatory
|
||||||
| username | The e-mail address used to log into the Foobot App | Mandatory
|
| username | The e-mail address used to log into the Foobot App | Mandatory
|
||||||
| refreshInterval | Refresh interval in minutes, minimal 5 minutes | Optional, the default value is 8 minutes.
|
| refreshInterval | Refresh interval in minutes, minimal 5 minutes | Optional, the default value is 8 minutes.
|
||||||
|
@ -30,7 +30,7 @@ The binding will automatically discover the Omnilogic pool things from the cloud
|
|||||||
Hayward OmniLogic Connection Parameters:
|
Hayward OmniLogic Connection Parameters:
|
||||||
|
|
||||||
| Property | Default | Required | Description |
|
| Property | Default | Required | Description |
|
||||||
|----------------------|----------------------------------------------------------------|----------|----------------------------------------------|
|
|----------------------|------------------------------------------------------------------|----------|----------------------------------------------|
|
||||||
| Host Name | <https://app1.haywardomnilogic.com/HAAPI/HomeAutomation/API.ash> | Yes | Host name of the Hayward API server |
|
| Host Name | <https://app1.haywardomnilogic.com/HAAPI/HomeAutomation/API.ash> | Yes | Host name of the Hayward API server |
|
||||||
| User Name | None | Yes | Your Hayward User Name (not email address) |
|
| User Name | None | Yes | Your Hayward User Name (not email address) |
|
||||||
| Password | None | Yes | Your Hayward User Password |
|
| Password | None | Yes | Your Hayward User Password |
|
||||||
|
@ -323,12 +323,13 @@ rule "Play AuxIn from Living Room"
|
|||||||
then
|
then
|
||||||
if (receivedCommand.toString == "aux_in_1") {
|
if (receivedCommand.toString == "aux_in_1") {
|
||||||
sendCommand(HeosKitchen_Input, "aux_in_1")
|
sendCommand(HeosKitchen_Input, "aux_in_1")
|
||||||
|
}
|
||||||
} if (receivedCommand.toString == "LivingRoom") {
|
if (receivedCommand.toString == "LivingRoom") {
|
||||||
sendCommand(HeosBridge_Play_Living, ON)
|
sendCommand(HeosBridge_Play_Living, ON)
|
||||||
sendCommand(HeosKitchen_Input, "aux_in_1")
|
sendCommand(HeosKitchen_Input, "aux_in_1")
|
||||||
sendCommand(HeosBridge_Play_Living, OFF) //Switch player channel off again to be sure that it is OFF
|
sendCommand(HeosBridge_Play_Living, OFF) //Switch player channel off again to be sure that it is OFF
|
||||||
}
|
}
|
||||||
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
Sitemap:
|
Sitemap:
|
||||||
|
Loading…
Reference in New Issue
Block a user