Minor clarification of macAddress property (#12119)

Signed-off-by: Arne Seime <arne.seime@gmail.com>
This commit is contained in:
Arne Seime 2022-01-28 16:41:56 +01:00 committed by GitHub
parent 9717b7a107
commit 4cad5dab1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 14 deletions

View File

@ -1,7 +1,6 @@
# Millheat Binding # Millheat Binding
This binding integrates the Mill Wi-Fi enabled panel heaters. This binding integrates the Mill Wi-Fi enabled panel heaters. See https://www.millheat.com/mill-wifi/
See https://www.millheat.com/mill-wifi/
## Supported Things ## Supported Things
@ -38,13 +37,10 @@ See full example below for how to configure using thing files.
### Heater ### Heater
* `macAddress` = network mac address of device. * `macAddress` = network mac address of device in UPPERCASE.
Can be found in the app by viewing devices. Can be found in the app by viewing devices. Or you can find it during discovery. Used for heaters connected to a room.
Or you can find it during discovery.
Used for heaters connected to a room.
* `heaterId` = id of device/heater, type number (not string) * `heaterId` = id of device/heater, type number (not string)
Use auto discovery to find this value. Use auto discovery to find this value. Used to identify independent heaters or heaters connected to a room.
Used to identify independent heaters or heaters connected to a room.
* `power` = number of watts this heater is consuming when active. * `power` = number of watts this heater is consuming when active.
Used to provide data for the currentPower channel. Used to provide data for the currentPower channel.
@ -75,7 +71,6 @@ Either `macAddres` or `heaterId` must be specified.
| heatingActive | R | Switch | Whether the heaters in this room are active | | heatingActive | R | Switch | Whether the heaters in this room are active |
| program | R | String | Name of program used in this room | | program | R | String | Name of program used in this room |
### Heater channels ### Heater channels
| Channel | Read/write | Item type | Description | | Channel | Read/write | Item type | Description |
@ -89,7 +84,6 @@ Either `macAddres` or `heaterId` must be specified.
| window | R | Contact | Whether this heater has detected that a window nearby is open/detection of cold air (UNTESTED) | | window | R | Contact | Whether this heater has detected that a window nearby is open/detection of cold air (UNTESTED) |
| masterSwitch | R/W | Switch | Turn heater ON/OFF. Channel available only if heater is not connected to a room | | masterSwitch | R/W | Switch | Turn heater ON/OFF. Channel available only if heater is not connected to a room |
## Full Example ## Full Example
millheat.things: millheat.things:
@ -98,7 +92,7 @@ millheat.things:
Bridge millheat:account:home "Millheat account" [username="email@address.com",password="topsecret"] { Bridge millheat:account:home "Millheat account" [username="email@address.com",password="topsecret"] {
Thing home monaco "Penthouse Monaco" [ homeId=100000000000000 ] // Note: numeric value Thing home monaco "Penthouse Monaco" [ homeId=100000000000000 ] // Note: numeric value
Thing room office "Office room" [ roomId=200000000000000 ] Note: numeric value Thing room office "Office room" [ roomId=200000000000000 ] Note: numeric value
Thing heater office "Office panel heater" [ macAddress="F0XXXXXXXXX", power=900, heaterId=12345 ] Note: heaterId is a numeric value Thing heater office "Office panel heater" [ macAddress="F0XXXXXXXXX", power=900, heaterId=12345 ] Note: heaterId is a numeric value, macAddress in UPPERCASE
} }
``` ```