Updated external 2.5.x content (Jenkins build 490)
parent
6d7738455c
commit
98889cbcbf
|
@ -46,8 +46,9 @@ For the BRP072A42:
|
|||
| outdoortemp | The outdoor temperature as measured by the external part of the air conditioning system. May not be available when unit is off. |
|
||||
| humidity | The indoor humidity as measured by the unit. This is not available on all units. |
|
||||
| mode | The mode set for the unit (AUTO, DEHUMIDIFIER, COLD, HEAT, FAN) |
|
||||
| homekit mode | A mode that is compatible with homekit/alexa/google home (off, auto, heat, cool) |
|
||||
| homekit mode | A mode that is compatible with homekit/alexa/google home (off, auto, heat, cool) |
|
||||
| fanspeed | The fan speed set for the unit (AUTO, SILENCE, LEVEL_1, LEVEL_2, LEVEL_3, LEVEL_4, LEVEL_5) |
|
||||
| fandir | The fan blade direction (STOPPED, VERTICAL, HORIZONTAL, VERTICAL_AND_HORIZONTAL) |
|
||||
|
||||
For the BRP15B61:
|
||||
|
||||
|
@ -58,8 +59,8 @@ For the BRP15B61:
|
|||
| indoortemp | The indoor temperature as measured by the unit. |
|
||||
| outdoortemp | The outdoor temperature as measured by the external part of the air conditioning system. May not be available when unit is off. |
|
||||
| mode | The mode set for the unit (AUTO, DEHUMIDIFIER, COLD, HEAT, FAN) |
|
||||
| homekit mode | A mode that is compatible with homekit/alexa/google home (off, auto, heat, cool) |
|
||||
| airbasefanspeed | The fan speed set for the unit (AIRSIDE, LEVEL_1, LEVEL_2, LEVEL_3, LEVEL_4, LEVEL_5, AUTO_LEVEL_1, AUTO_LEVEL_2, AUTO_LEVEL_3, AUTO_LEVEL_4, AUTO_LEVEL_5) |
|
||||
| homekit mode | A mode that is compatible with homekit/alexa/google home (off, auto, heat, cool) |
|
||||
| airbasefanspeed | The fan speed set for the unit (AUTO, AIRSIDE, LEVEL_1, LEVEL_2, LEVEL_3, LEVEL_4, LEVEL_5, AUTO_LEVEL_1, AUTO_LEVEL_2, AUTO_LEVEL_3, AUTO_LEVEL_4, AUTO_LEVEL_5) |
|
||||
| zone1 | Turns zone 1 on/off for the air conditioning unit (if a zone controller is installed.) |
|
||||
| zone2 | Turns zone 2 on/off for the air conditioning unit. |
|
||||
| zone3 | Turns zone 3 on/off for the air conditioning unit. |
|
||||
|
@ -86,6 +87,7 @@ Number:Temperature DaikinACUnit_SetPoint { channel="daikin:ac_unit:living_room_a
|
|||
String DaikinACUnit_Mode { channel="daikin:ac_unit:living_room_ac:mode" }
|
||||
String DaikinACUnit_HomekitMode { channel="daikin:ac_unit:living_room_ac:homekitmode" }
|
||||
String DaikinACUnit_Fan { channel="daikin:ac_unit:living_room_ac:fanspeed" }
|
||||
String DaikinACUnit_Fan_Movement { channel="daikin:ac_unit:living_room_ac:fandir" }
|
||||
Number:Temperature DaikinACUnit_IndoorTemperature { channel="daikin:ac_unit:living_room_ac:indoortemp" }
|
||||
Number:Temperature DaikinACUnit_OutdoorTemperature { channel="daikin:ac_unit:living_room_ac:outdoortemp" }
|
||||
# Additional items for BRP1B61
|
||||
|
|
|
@ -0,0 +1,212 @@
|
|||
---
|
||||
id: dwdpollenflug
|
||||
label: DWDPollenflug
|
||||
title: DWDPollenflug - Bindings
|
||||
type: binding
|
||||
description: "The 'Deutsche Wetterdienst' (DWD) reports the current pollen count index for Germany on a daily base and a forecast for tomorrow and the day after tomorrow."
|
||||
since: 2x
|
||||
install: manual
|
||||
---
|
||||
|
||||
<!-- Attention authors: Do not edit directly. Please add your changes to the appropriate source repository -->
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# DWDPollenflug Binding
|
||||
|
||||
The "Deutsche Wetterdienst" (DWD) reports the current pollen count index for Germany on a daily base and a forecast for tomorrow and the day after tomorrow.
|
||||
This binding allows you to retrieve this data for your region or partregion. You can find a map of the data here:
|
||||
|
||||
https://isabel.dwd.de/DE/leistungen/gefahrenindizespollen/gefahrenindexpollen.html
|
||||
|
||||
|
||||
## Supported Things
|
||||
|
||||
This binding supports a bridge thing (`bridge`), which polls the dataset for Germany in an adjustable interval.
|
||||
And it supports a region thing (`region`), representing the data for all pollen types of a region or partregion.
|
||||
|
||||
## Thing Configuration
|
||||
|
||||
### Bridge
|
||||
|
||||
| Property | Default | Required | Description |
|
||||
| --------- | :-----: | :------: | ------------------------------------------------------------------------------------ |
|
||||
| `refresh` | 30 | no | Define the interval for polling the data from DWD in minutes. Minimum is 15 minutes. |
|
||||
|
||||
### Region
|
||||
|
||||
| Property | Default | Required | Description |
|
||||
| ---------- | :-----: | :------: | -------------------------------------------------------------------------------------------------------- |
|
||||
| `regionID` | - | yes | In PaperUI just select the region you want to display data for. For files-configuration see table below. |
|
||||
|
||||
#### Manual region or partregion selection ####
|
||||
|
||||
The region ID is the partregion_id or if there is no partregion the region_id from this [json](https://opendata.dwd.de/climate_environment/health/alerts/s31fg.json) of DWD.
|
||||
You can refer to the following table.
|
||||
|
||||
| regionID | Region | Partregion |
|
||||
| -------- | ------------------------------ | -------------------------------------------------- |
|
||||
| 11 | Schleswig-Holstein und Hamburg | Inseln und Marschen |
|
||||
| 12 | Schleswig-Holstein und Hamburg | Geest, Schleswig-Holstein und Hamburg |
|
||||
| 20 | Mecklenburg-Vorpommern | - |
|
||||
| 31 | Niedersachsen und Bremen | Westl. Niedersachsen/Bremen |
|
||||
| 32 | Niedersachsen und Bremen | Östl. Niedersachsen |
|
||||
| 41 | Nordrhein-Westfalen | Rhein.-Westfäl. Tiefland |
|
||||
| 42 | Nordrhein-Westfalen | Ostwestfalen |
|
||||
| 43 | Nordrhein-Westfalen | Mittelgebirge NRW |
|
||||
| 50 | Brandenburg und Berlin | - |
|
||||
| 61 | Sachsen-Anhalt | Tiefland Sachsen-Anhalt |
|
||||
| 62 | Sachsen-Anhalt | Harz |
|
||||
| 71 | Thüringen | Tiefland Thüringen |
|
||||
| 72 | Thüringen | Mittelgebirge Thüringen |
|
||||
| 81 | Sachsen | Tiefland Sachsen |
|
||||
| 82 | Sachsen | Mittelgebirge Sachsen |
|
||||
| 91 | Hessen | Nordhessen und hess. Mittelgebirge |
|
||||
| 92 | Hessen | Rhein-Main |
|
||||
| 101 | Rheinland-Pfalz und Saarland | Rhein, Pfalz, Nahe und Mosel |
|
||||
| 102 | Rheinland-Pfalz und Saarland | Mittelgebirgsbereich Rheinland-Pfalz |
|
||||
| 103 | Rheinland-Pfalz und Saarland | Saarland |
|
||||
| 111 | Baden-Württemberg | Oberrhein und unteres Neckartal |
|
||||
| 112 | Baden-Württemberg | Hohenlohe/mittlerer Neckar/Oberschwaben |
|
||||
| 113 | Baden-Württemberg | Mittelgebirge Baden-Württemberg |
|
||||
| 121 | Bayern | Allgäu/Oberbayern/Bay. Wald |
|
||||
| 122 | Bayern | Donauniederungen |
|
||||
| 123 | Bayern | Bayern n. der Donau, o. Bayr. Wald, o. Mainfranken |
|
||||
| 124 | Bayern | Mainfranken |
|
||||
|
||||
## Channels
|
||||
|
||||
The bridge thing has following channels:
|
||||
|
||||
| channel | description |
|
||||
| --------------------- | ---------------------------------------------- |
|
||||
| `updates#refreshed` | Hold the time of the bridge's last refresh |
|
||||
| `updates#last_update` | The time when data was last updated by DWD |
|
||||
| `updates#next_update` | The time when data will be updated next by DWD |
|
||||
|
||||
For each of the eight pollen types reported by DWD the region thing has three channels for today, tomorrow and the day after tomorrow.
|
||||
|
||||
| channels | pollen type | german name |
|
||||
| ---------------------- | ----------- | ----------- |
|
||||
| `alder#today` | alder | Erle |
|
||||
| `alder#tomorrow` | | |
|
||||
| `alder#dayafter_to` | | |
|
||||
| `ambrosia#today` | ambrosia | Ambrosia |
|
||||
| `ambrosia#tomorrow` | | |
|
||||
| `ambrosia#dayafter_to` | | |
|
||||
| `ash#today` | ash-tree | Esche |
|
||||
| `ash#tomorrow` | | |
|
||||
| `ash#dayafter_to` | | |
|
||||
| `birch#today` | birch | Birke |
|
||||
| `birch#tomorrow` | | |
|
||||
| `birch#dayafter_to` | | |
|
||||
| `grasses#today` | grasses | Gräser |
|
||||
| `grasses#tomorrow` | | |
|
||||
| `grasses#dayafter_to` | | |
|
||||
| `hazel#today` | hazel | Hasel |
|
||||
| `hazel#tomorrow` | | |
|
||||
| `hazel#dayafter_to` | | |
|
||||
| `mugwort#today` | mugwort | Beifuß |
|
||||
| `mugwort#tomorrow` | | |
|
||||
| `mugwort#dayafter_to` | | |
|
||||
| `rye#today` | rye | Roggen |
|
||||
| `rye#tomorrow` | | |
|
||||
| `rye#dayafter_to` | | |
|
||||
|
||||
There are the following possible string values:
|
||||
|
||||
| value | description |
|
||||
| ----- | --------------------------- |
|
||||
| -1 | not specified |
|
||||
| 0 | no pollen pollution |
|
||||
| 0-1 | no to low pollen count |
|
||||
| 1 | low pollen count |
|
||||
| 1-2 | low to medium pollen count |
|
||||
| 2 | medium pollen count |
|
||||
| 2-3 | medium to high pollen count |
|
||||
| 3 | high pollen count |
|
||||
|
||||
## Full Example
|
||||
|
||||
### Things file for region "Brandenburg und Berlin" and partregion "Bayern - Mainfranken" ###
|
||||
|
||||
```
|
||||
Bridge dwdpollenflug:bridge:dwd "DWD pollen count Bridge" [refresh="15"] {
|
||||
Thing region region50 "DWD pollen count region" @ "APIS" [regionID="50"]
|
||||
Thing region partregion124 "DWD pollen count partregion" @ "APIS" [regionID="124"]
|
||||
}
|
||||
```
|
||||
|
||||
### Items example for region "Brandenburg und Berlin" and pollen type ash-tree ###
|
||||
|
||||
```
|
||||
String pollenTodayEsche
|
||||
"Esche [MAP(pollen.map):%s]"
|
||||
{channel="dwdpollenflug:region:dwd:region50:ash#today"}
|
||||
|
||||
String pollenTomorrowEsche
|
||||
"Esche morgen [MAP(pollen.map):%s]"
|
||||
{channel="dwdpollenflug:region:dwd:region50:ash#tomorrow"}
|
||||
|
||||
String pollenDayAfterTomorrowEsche
|
||||
"Esche übermorgen [MAP(pollen.map):%s]"
|
||||
{channel="dwdpollenflug:region:dwd:region50:ash#dayafter_to"}
|
||||
|
||||
```
|
||||
|
||||
### Transform map file pollen.map ###
|
||||
|
||||
```
|
||||
0=keine (0)
|
||||
0-1=keine bis gering (0-1)
|
||||
1=gering (1)
|
||||
1-2=gering bis mittel (1-2)
|
||||
2=mittel (2)
|
||||
2-3=mittel bis hoch (2-3)
|
||||
3=hoch (3)
|
||||
-1=keine Daten
|
||||
-=keine Daten
|
||||
NULL=keine Daten
|
||||
```
|
||||
|
||||
### Sitemap example for region "Brandenburg und Berlin" and pollen type ash-tree ###
|
||||
|
||||
```
|
||||
Text label="Pollenflugindex" {
|
||||
Frame {
|
||||
Text item=pollenTodayEsche
|
||||
valuecolor=[=="3"="#f00014",
|
||||
=="2-3"="#f00014",
|
||||
=="2"="#ff9900",
|
||||
=="1-2"="#ff9900",
|
||||
=="1"="#ffff00",
|
||||
=="0-1"="#00c83c"] {
|
||||
Frame {
|
||||
Text item=pollenTodayEsche
|
||||
valuecolor=[=="3"="#f00014",
|
||||
=="2-3"="#f00014",
|
||||
=="2"="#ff9900",
|
||||
=="1-2"="#ff9900",
|
||||
=="1"="#ffff00",
|
||||
=="0-1"="#00c83c"]
|
||||
|
||||
Text item=pollenTomorrowEsche
|
||||
valuecolor=[=="3"="#f00014",
|
||||
=="2-3"="#f00014",
|
||||
=="2"="#ff9900",
|
||||
=="1-2"="#ff9900",
|
||||
=="1"="#ffff00",
|
||||
=="0-1"="#00c83c"]
|
||||
|
||||
Text item=pollenDayAfterTomorrowEsche
|
||||
valuecolor=[=="3"="#f00014",
|
||||
=="2-3"="#f00014",
|
||||
=="2"="#ff9900",
|
||||
=="1-2"="#ff9900",
|
||||
=="1"="#ffff00",
|
||||
=="0-1"="#00c83c"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
|
@ -110,6 +110,7 @@ These have been tested and should work out of the box:
|
|||
| 2342-222 | Mini Remote (8 Button) | F00.00.20 | Bernd Pfrommer |
|
||||
| 2441V | Insteon Thermostat Adaptor for Venstar | F00.00.21 | Bernd Pfrommer |
|
||||
| 2982-222 | Insteon Smoke Bridge | F00.00.22 | Bernd Pfrommer |
|
||||
| 2487S | KeypadLinc On/Off 8-Button | F00.00.23 | Tom Weichmann |
|
||||
| 2450 | IO Link | 0x00001A | Bernd Pfrommer |
|
||||
| 2486D | KeypadLinc Dimmer | 0x000037 | Patrick Giasson, Joe Barnum |
|
||||
| 2484DWH8 | KeypadLinc Countdown Timer | 0x000041 | Rob Nielsen |
|
||||
|
|
|
@ -67,7 +67,7 @@ Discovered repeaters/processors will be accessed using the default integration c
|
|||
These can be changed in the bridge thing configuration.
|
||||
Discovered keypad devices should now have their model parameters automatically set to the correct value.
|
||||
|
||||
Caseta Smart Bridge PRO 2 hubs should now be discovered automatically via mDNS.
|
||||
Caseta Smart Bridge PRO 2 hubs and RA2 Select main repeaters should now be discovered automatically via mDNS.
|
||||
Devices attached to them still need to be configured manually.
|
||||
|
||||
Other supported Lutron systems must be configured manually.
|
||||
|
|
|
@ -184,6 +184,7 @@ However, for devices that are unsupported, you may override the value and try to
|
|||
| Roborock Vacuum T7 v3 | miio:vacuum | [roborock.vacuum.t7pv3](#roborock-vacuum-t7pv3) | Yes | |
|
||||
| Roborock Vacuum S5 Max | miio:vacuum | [roborock.vacuum.s5e](#roborock-vacuum-s5e) | Yes | |
|
||||
| Roborock Vacuum S6 | miio:vacuum | [rockrobo.vacuum.s6](#rockrobo-vacuum-s6) | Yes | |
|
||||
| Roborock Vacuum S6 | miio:vacuum | [roborock.vacuum.s6](#roborock-vacuum-s6) | Yes | |
|
||||
| Rockrobo Xiaowa Vacuum v2 | miio:unsupported | roborock.vacuum.e2 | No | |
|
||||
| Xiaomi Mijia vacuum V-RVCLM21B | miio:unsupported | viomi.vacuum.v6 | No | |
|
||||
| Xiaomi Mijia vacuum STYJ02YM | miio:unsupported | viomi.vacuum.v7 | No | |
|
||||
|
@ -845,7 +846,7 @@ e.g. `smarthome:send actionCommand 'upd_timer["1498595904821", "on"]'` would ena
|
|||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| ambientPower | Switch | Ambient Power |
|
||||
| ambientBrightness | Number | Ambient Brightness |
|
||||
| illumination | Number | Ambient Illumination |
|
||||
|
@ -856,8 +857,8 @@ e.g. `smarthome:send actionCommand 'upd_timer["1498595904821", "on"]'` would ena
|
|||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| switchscene | Switch | Switch Scene |
|
||||
| toggle | Switch | Toggle |
|
||||
|
@ -867,8 +868,8 @@ e.g. `smarthome:send actionCommand 'upd_timer["1498595904821", "on"]'` would ena
|
|||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| switchscene | Switch | Switch Scene |
|
||||
| toggle | Switch | Toggle |
|
||||
|
@ -878,21 +879,20 @@ e.g. `smarthome:send actionCommand 'upd_timer["1498595904821", "on"]'` would ena
|
|||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| dv | Number | DV |
|
||||
| switchscene | Switch | Switch Scene |
|
||||
| delayoff | Switch | Delay Off |
|
||||
| toggle | Switch | Toggle |
|
||||
|
||||
### PHILIPS Zhirui Smart LED Bulb E14 Candle Lamp (<a name="philips-light-candle">philips.light.candle</a>) Channels
|
||||
|
||||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| delayoff | Switch | Delay Off |
|
||||
| toggle | Switch | Toggle |
|
||||
|
@ -902,21 +902,20 @@ e.g. `smarthome:send actionCommand 'upd_timer["1498595904821", "on"]'` would ena
|
|||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| dv | Number | DV |
|
||||
| switchscene | Switch | Switch Scene |
|
||||
| delayoff | Switch | Delay Off |
|
||||
| toggle | Switch | Toggle |
|
||||
|
||||
### Xiaomi Philips ZhiRui bedside lamp (<a name="philips-light-moonlight">philips.light.moonlight</a>) Channels
|
||||
|
||||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| dv | Number | DV |
|
||||
| gonight | Switch | Go Night |
|
||||
|
@ -928,8 +927,8 @@ e.g. `smarthome:send actionCommand 'upd_timer["1498595904821", "on"]'` would ena
|
|||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| delayoff | Switch | Delay Off |
|
||||
| toggle | Switch | Toggle |
|
||||
|
@ -939,52 +938,44 @@ e.g. `smarthome:send actionCommand 'upd_timer["1498595904821", "on"]'` would ena
|
|||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| scene | Number | Scene |
|
||||
| dv | Number | DV |
|
||||
| switchscene | Switch | Switch Scene |
|
||||
| delayoff | Switch | Delay Off |
|
||||
| toggle | Switch | Toggle |
|
||||
|
||||
### philips.light.virtual (<a name="philips-light-virtual">philips.light.virtual</a>) Channels
|
||||
|
||||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| dv | Number | DV |
|
||||
| switchscene | Switch | Switch Scene |
|
||||
| delayoff | Switch | Delay Off |
|
||||
| toggle | Switch | Toggle |
|
||||
|
||||
### philips.light.zysread (<a name="philips-light-zysread">philips.light.zysread</a>) Channels
|
||||
|
||||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| dv | Number | DV |
|
||||
| switchscene | Switch | Switch Scene |
|
||||
| delayoff | Switch | Delay Off |
|
||||
| toggle | Switch | Toggle |
|
||||
|
||||
### philips.light.zystrip (<a name="philips-light-zystrip">philips.light.zystrip</a>) Channels
|
||||
|
||||
| Channel | Type | Description |
|
||||
|------------------|---------|-------------------------------------|
|
||||
| power | Switch | Power |
|
||||
| brightness | Number | Brightness |
|
||||
| cct | Number | Correlated Color Temperature |
|
||||
| brightness | Dimmer | Brightness |
|
||||
| cct | Dimmer | Correlated Color Temperature |
|
||||
| scene | Number | Scene |
|
||||
| dv | Number | DV |
|
||||
| switchscene | Switch | Switch Scene |
|
||||
| delayoff | Switch | Delay Off |
|
||||
| toggle | Switch | Toggle |
|
||||
|
||||
### Mi Power-plug (<a name="chuangmi-plug-m1">chuangmi.plug.m1</a>) Channels
|
||||
|
||||
|
@ -2217,7 +2208,7 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "Xiaomi Philips Eyecare Smart Lamp 2" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Switch ambientPower "Ambient Power" (G_light) {channel="miio:basic:light:ambientPower"}
|
||||
Number ambientBrightness "Ambient Brightness" (G_light) {channel="miio:basic:light:ambientBrightness"}
|
||||
Number illumination "Ambient Illumination" (G_light) {channel="miio:basic:light:illumination"}
|
||||
|
@ -2231,8 +2222,8 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "Xiaomi Philips LED Ceiling Lamp" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Switch switchscene "Switch Scene" (G_light) {channel="miio:basic:light:switchscene"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
|
@ -2245,8 +2236,8 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "Xiaomi Philips LED Ceiling Lamp" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Switch switchscene "Switch Scene" (G_light) {channel="miio:basic:light:switchscene"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
|
@ -2259,13 +2250,12 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "Xiaomi Philips Bulb" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Number dv "DV" (G_light) {channel="miio:basic:light:dv"}
|
||||
Switch switchscene "Switch Scene" (G_light) {channel="miio:basic:light:switchscene"}
|
||||
Switch delayoff "Delay Off" (G_light) {channel="miio:basic:light:delayoff"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
```
|
||||
|
||||
### PHILIPS Zhirui Smart LED Bulb E14 Candle Lamp (philips.light.candle) item file lines
|
||||
|
@ -2275,8 +2265,8 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "PHILIPS Zhirui Smart LED Bulb E14 Candle Lamp" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Switch delayoff "Delay Off" (G_light) {channel="miio:basic:light:delayoff"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
|
@ -2289,13 +2279,12 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "Xiaomi Philips Downlight" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Number dv "DV" (G_light) {channel="miio:basic:light:dv"}
|
||||
Switch switchscene "Switch Scene" (G_light) {channel="miio:basic:light:switchscene"}
|
||||
Switch delayoff "Delay Off" (G_light) {channel="miio:basic:light:delayoff"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
```
|
||||
|
||||
### Xiaomi Philips ZhiRui bedside lamp (philips.light.moonlight) item file lines
|
||||
|
@ -2305,8 +2294,8 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "Xiaomi Philips ZhiRui bedside lamp" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Number dv "DV" (G_light) {channel="miio:basic:light:dv"}
|
||||
Switch gonight "Go Night" (G_light) {channel="miio:basic:light:gonight"}
|
||||
|
@ -2321,8 +2310,8 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "Xiaomi PHILIPS Zhirui Smart LED Bulb E14 Candle Lamp White Crystal" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Switch delayoff "Delay Off" (G_light) {channel="miio:basic:light:delayoff"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
|
@ -2335,13 +2324,8 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "philips.light.mono1" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Number dv "DV" (G_light) {channel="miio:basic:light:dv"}
|
||||
Switch switchscene "Switch Scene" (G_light) {channel="miio:basic:light:switchscene"}
|
||||
Switch delayoff "Delay Off" (G_light) {channel="miio:basic:light:delayoff"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
```
|
||||
|
||||
### philips.light.virtual (philips.light.virtual) item file lines
|
||||
|
@ -2351,13 +2335,12 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "philips.light.virtual" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Number dv "DV" (G_light) {channel="miio:basic:light:dv"}
|
||||
Switch switchscene "Switch Scene" (G_light) {channel="miio:basic:light:switchscene"}
|
||||
Switch delayoff "Delay Off" (G_light) {channel="miio:basic:light:delayoff"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
```
|
||||
|
||||
### philips.light.zysread (philips.light.zysread) item file lines
|
||||
|
@ -2367,13 +2350,12 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "philips.light.zysread" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Number dv "DV" (G_light) {channel="miio:basic:light:dv"}
|
||||
Switch switchscene "Switch Scene" (G_light) {channel="miio:basic:light:switchscene"}
|
||||
Switch delayoff "Delay Off" (G_light) {channel="miio:basic:light:delayoff"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
```
|
||||
|
||||
### philips.light.zystrip (philips.light.zystrip) item file lines
|
||||
|
@ -2383,13 +2365,12 @@ note: Autogenerated example. Replace the id (light) in the channel with your own
|
|||
```java
|
||||
Group G_light "philips.light.zystrip" <status>
|
||||
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||
Number brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Number cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||
Dimmer cct "Correlated Color Temperature" (G_light) {channel="miio:basic:light:cct"}
|
||||
Number scene "Scene" (G_light) {channel="miio:basic:light:scene"}
|
||||
Number dv "DV" (G_light) {channel="miio:basic:light:dv"}
|
||||
Switch switchscene "Switch Scene" (G_light) {channel="miio:basic:light:switchscene"}
|
||||
Switch delayoff "Delay Off" (G_light) {channel="miio:basic:light:delayoff"}
|
||||
Switch toggle "Toggle" (G_light) {channel="miio:basic:light:toggle"}
|
||||
```
|
||||
|
||||
### Mi Power-plug (chuangmi.plug.m1) item file lines
|
||||
|
|
|
@ -136,19 +136,77 @@ Number Netatmo_Indoor_CO2 "CO2" <carbondioxide> { channel = "netatmo:NAMain:home
|
|||
| Channel ID | Item Type | Description |
|
||||
|---------------------|----------------------|----------------------------------------------------------|
|
||||
| Co2 | Number:Dimensionless | Air quality |
|
||||
| MinCo2 | Number:Dimensionless | Minimum CO2 on current day |
|
||||
| MinCo2ThisWeek | Number:Dimensionless | Minimum CO2 this week |
|
||||
| MinCo2ThisMonth | Number:Dimensionless | Minimum CO2 this month |
|
||||
| MaxCo2 | Number:Dimensionless | Maximum CO2 on current day |
|
||||
| MaxCo2ThisWeek | Number:Dimensionless | Maximum CO2 this week |
|
||||
| MaxCo2ThisMonth | Number:Dimensionless | Maximum CO2 this month |
|
||||
| DateMinCo2 | DateTime | Date when minimum CO2 was reached on current day |
|
||||
| DateMinCo2ThisWeek | DateTime | Date when minimum CO2 was reached this week |
|
||||
| DateMinCo2ThisMonth | DateTime | Date when minimum CO2 was reached this month |
|
||||
| DateMaxCo2 | DateTime | Date when maximum CO2 was reached on current day |
|
||||
| DateMaxCo2ThisWeek | DateTime | Date when maximum CO2 was reached this week |
|
||||
| DateMaxCo2ThisMonth | DateTime | Date when maximum CO2 was reached this month |
|
||||
| Temperature | Number:Temperature | Current temperature |
|
||||
| TempTrend | String | Temperature evolution trend (up, down, stable) |
|
||||
| Noise | Number:Dimensionless | Current noise level |
|
||||
| MinNoise | Number:Dimensionless | Minimum noise on current day |
|
||||
| MinNoiseThisWeek | Number:Dimensionless | Minimum noise this week |
|
||||
| MinNoiseThisMonth | Number:Dimensionless | Minimum noise this month |
|
||||
| MaxNoise | Number:Dimensionless | Maximum noise on current day |
|
||||
| MaxNoiseThisWeek | Number:Dimensionless | Maximum noise this week |
|
||||
| MaxNoiseThisMonth | Number:Dimensionless | Maximum noise this month |
|
||||
| DateMinNoise | DateTime | Date when minimum noise was reached on current day |
|
||||
| DateMinNoiseThisWeek| DateTime | Date when minimum noise was reached this week |
|
||||
| DateMinNoiseThisMonth| DateTime | Date when minimum noise was reached this month |
|
||||
| DateMaxNoise | DateTime | Date when maximum noise was reached on current day |
|
||||
| DateMaxNoiseThisWeek| DateTime | Date when maximum noise was reached this week |
|
||||
| DateMaxNoiseThisMonth| DateTime | Date when maximum noise was reached this month |
|
||||
| Pressure | Number:Pressure | Current pressure |
|
||||
| MinPressure | Number:Pressure | Minimum pressure on current day |
|
||||
| MinPressureThisWeek | Number:Pressure | Minimum pressure this week |
|
||||
| MinPressureThisMonth| Number:Pressure | Minimum pressure this month |
|
||||
| MaxPressure | Number:Pressure | Maximum pressure on current day |
|
||||
| MaxPressureThisWeek | Number:Pressure | Maximum pressure this week |
|
||||
| MaxPressureThisMonth| Number:Pressure | Maximum pressure this month |
|
||||
| DateMinPressure | DateTime | Date when minimum pressure was reached on current day |
|
||||
| DateMinPressureThisWeek | DateTime | Date when minimum pressure was reached this week |
|
||||
| DateMinPressureThisMonth| DateTime | Date when minimum pressure was reached this month |
|
||||
| DateMaxPressure | DateTime | Date when maximum pressure was reached on current day |
|
||||
| DateMaxPressureThisWeek | DateTime | Date when maximum pressure was reached this week |
|
||||
| DateMaxPressureThisMonth| DateTime | Date when maximum pressure was reached this month |
|
||||
| PressTrend | String | Pressure evolution trend for last 12h (up, down, stable) |
|
||||
| AbsolutePressure | Number:Pressure | Absolute pressure |
|
||||
| Humidity | Number:Dimensionless | Current humidity |
|
||||
| MinHumidity | Number:Dimensionless | Minimum humidity on current day |
|
||||
| MinHumidityThisWeek | Number:Dimensionless | Minimum humidity this week |
|
||||
| MinHumidityThisMonth| Number:Dimensionless | Minimum humidity this month |
|
||||
| MaxHumidity | Number:Dimensionless | Maximum humidity on current day |
|
||||
| MaxHumidityThisWeek | Number:Dimensionless | Maximum humidity this week |
|
||||
| MaxHumidityThisMonth| Number:Dimensionless | Maximum humidity this month |
|
||||
| DateMinHumidity | DateTime | Date when minimum humidity was reached on current day |
|
||||
| DateMinHumidityThisWeek | DateTime | Date when minimum humidity was reached this week |
|
||||
| DateMinHumidityThisMonth| DateTime | Date when minimum humidity was reached this month |
|
||||
| DateMaxHumidity | DateTime | Date when maximum humidity was reached on current day |
|
||||
| DateMaxHumidityThisWeek | DateTime | Date when maximum humidity was reached this week |
|
||||
| DateMaxHumidityThisMonth| DateTime | Date when maximum humidity was reached this month |
|
||||
| Humidex | Number | Computed Humidex index |
|
||||
| HeatIndex | Number:Temperature | Computed Heat Index |
|
||||
| Dewpoint | Number:Temperature | Computed dewpoint temperature |
|
||||
| DewpointDepression | Number:Temperature | Computed dewpoint depression |
|
||||
| MinTemp | Number:Temperature | Minimum temperature on current day |
|
||||
| MinTempThisWeek | Number:Temperature | Minimum temperature this week |
|
||||
| MinTempThisMonth | Number:Temperature | Minimum temperature this month |
|
||||
| MaxTemp | Number:Temperature | Maximum temperature on current day |
|
||||
| MaxTempThisWeek | Number:Temperature | Maximum temperature this week |
|
||||
| MaxTempThisMonth | Number:Temperature | Maximum temperature this month |
|
||||
| DateMinTemp | DateTime | Date when minimum temperature was reached on current day |
|
||||
| DateMinTempThisWeek | DateTime | Date when minimum temperature was reached this week |
|
||||
| DateMinTempThisMonth| DateTime | Date when minimum temperature was reached this month |
|
||||
| DateMaxTemp | DateTime | Date when maximum temperature was reached on current day |
|
||||
| DateMaxTempThisWeek | DateTime | Date when maximum temperature was reached this week |
|
||||
| DateMaxTempThisMonth| DateTime | Date when maximum temperature was reached this month |
|
||||
| DateMinTemp | DateTime | Date when minimum temperature was reached on current day |
|
||||
| DateMaxTemp | DateTime | Date when maximum temperature was reached on current day |
|
||||
| TimeStamp | DateTime | Timestamp when data was measured |
|
||||
|
@ -174,14 +232,34 @@ Number Netatmo_Outdoor_Temperature "Temperature" { channel = "netatmo:NAModule1:
|
|||
| Temperature | Number:Temperature | Current temperature |
|
||||
| TempTrend | String | Temperature evolution trend (up, down, stable) |
|
||||
| Humidity | Number:Dimensionless | Current humidity |
|
||||
| MinHumidity | Number:Dimensionless | Minimum humidity on current day |
|
||||
| MinHumidityThisWeek | Number:Dimensionless | Minimum humidity this week |
|
||||
| MinHumidityThisMonth| Number:Dimensionless | Minimum humidity this month |
|
||||
| MaxHumidity | Number:Dimensionless | Maximum humidity on current day |
|
||||
| MaxHumidityThisWeek | Number:Dimensionless | Maximum humidity this week |
|
||||
| MaxHumidityThisMonth| Number:Dimensionless | Maximum humidity this month |
|
||||
| DateMinHumidity | DateTime | Date when minimum humidity was reached on current day |
|
||||
| DateMinHumidityThisWeek | DateTime | Date when minimum humidity was reached this week |
|
||||
| DateMinHumidityThisMonth| DateTime | Date when minimum humidity was reached this month |
|
||||
| DateMaxHumidity | DateTime | Date when maximum humidity was reached on current day |
|
||||
| DateMaxHumidityThisWeek | DateTime | Date when maximum humidity was reached this week |
|
||||
| DateMaxHumidityThisMonth| DateTime | Date when maximum humidity was reached this month |
|
||||
| Humidex | Number | Computed Humidex index |
|
||||
| HeatIndex | Number:Temperature | Computed Heat Index |
|
||||
| Dewpoint | Number:Temperature | Computed dewpoint temperature |
|
||||
| DewpointDepression | Number:Temperature | Computed dewpoint depression |
|
||||
| MinTemp | Number:Temperature | Minimum temperature on current day |
|
||||
| MinTempThisWeek | Number:Temperature | Minimum temperature this week |
|
||||
| MinTempThisMonth | Number:Temperature | Minimum temperature this month |
|
||||
| MaxTemp | Number:Temperature | Maximum temperature on current day |
|
||||
| MaxTempThisWeek | Number:Temperature | Maximum temperature this week |
|
||||
| MaxTempThisMonth | Number:Temperature | Maximum temperature this month |
|
||||
| DateMinTemp | DateTime | Date when minimum temperature was reached on current day |
|
||||
| DateMinTempThisWeek | DateTime | Date when minimum temperature was reached this week |
|
||||
| DateMinTempThisMonth| DateTime | Date when minimum temperature was reached this month |
|
||||
| DateMaxTemp | DateTime | Date when maximum temperature was reached on current day |
|
||||
| DateMaxTempThisWeek | DateTime | Date when maximum temperature was reached this week |
|
||||
| DateMaxTempThisMonth| DateTime | Date when maximum temperature was reached this month |
|
||||
| TimeStamp | DateTime | Timestamp when data was measured |
|
||||
| LastMessage | DateTime | Last message emitted by the module |
|
||||
| LowBattery | Switch | Low battery |
|
||||
|
@ -204,17 +282,49 @@ Number Netatmo_Indoor2_Temperature "Temperature" { channel = "netatmo:NAModule4:
|
|||
| Channel ID | Item Type | Description |
|
||||
|---------------------|----------------------|----------------------------------------------------------|
|
||||
| Co2 | Number:Dimensionless | Air quality |
|
||||
| MinCo2 | Number:Dimensionless | Minimum CO2 on current day |
|
||||
| MinCo2ThisWeek | Number:Dimensionless | Minimum CO2 this week |
|
||||
| MinCo2ThisMonth | Number:Dimensionless | Minimum CO2 this month |
|
||||
| MaxCo2 | Number:Dimensionless | Maximum CO2 on current day |
|
||||
| MaxCo2ThisWeek | Number:Dimensionless | Maximum CO2 this week |
|
||||
| MaxCo2ThisMonth | Number:Dimensionless | Maximum CO2 this month |
|
||||
| DateMinCo2 | DateTime | Date when minimum CO2 was reached on current day |
|
||||
| DateMinCo2ThisWeek | DateTime | Date when minimum CO2 was reached this week |
|
||||
| DateMinCo2ThisMonth | DateTime | Date when minimum CO2 was reached this month |
|
||||
| DateMaxCo2 | DateTime | Date when maximum CO2 was reached on current day |
|
||||
| DateMaxCo2ThisWeek | DateTime | Date when maximum CO2 was reached this week |
|
||||
| DateMaxCo2ThisMonth | DateTime | Date when maximum CO2 was reached this month |
|
||||
| Temperature | Number:Temperature | Current temperature |
|
||||
| TempTrend | String | Temperature evolution trend (up, down, stable) |
|
||||
| Humidity | Number:Dimensionless | Current humidity |
|
||||
| MinHumidity | Number:Dimensionless | Minimum humidity on current day |
|
||||
| MinHumidityThisWeek | Number:Dimensionless | Minimum humidity this week |
|
||||
| MinHumidityThisMonth| Number:Dimensionless | Minimum humidity this month |
|
||||
| MaxHumidity | Number:Dimensionless | Maximum humidity on current day |
|
||||
| MaxHumidityThisWeek | Number:Dimensionless | Maximum humidity this week |
|
||||
| MaxHumidityThisMonth| Number:Dimensionless | Maximum humidity this month |
|
||||
| DateMinHumidity | DateTime | Date when minimum humidity was reached on current day |
|
||||
| DateMinHumidityThisWeek | DateTime | Date when minimum humidity was reached this week |
|
||||
| DateMinHumidityThisMonth| DateTime | Date when minimum humidity was reached this month |
|
||||
| DateMaxHumidity | DateTime | Date when maximum humidity was reached on current day |
|
||||
| DateMaxHumidityThisWeek | DateTime | Date when maximum humidity was reached this week |
|
||||
| DateMaxHumidityThisMonth| DateTime | Date when maximum humidity was reached this month |
|
||||
| Humidex | Number | Computed Humidex index |
|
||||
| HeatIndex | Number:Temperature | Computed Heat Index |
|
||||
| Dewpoint | Number:Temperature | Computed dewpoint temperature |
|
||||
| DewpointDepression | Number:Temperature | Computed dewpoint depression |
|
||||
| MinTemp | Number:Temperature | Minimum temperature on current day |
|
||||
| MinTempThisWeek | Number:Temperature | Minimum temperature this week |
|
||||
| MinTempThisMonth | Number:Temperature | Minimum temperature this month |
|
||||
| MaxTemp | Number:Temperature | Maximum temperature on current day |
|
||||
| MaxTempThisWeek | Number:Temperature | Maximum temperature this week |
|
||||
| MaxTempThisMonth | Number:Temperature | Maximum temperature this month |
|
||||
| DateMinTemp | DateTime | Date when minimum temperature was reached on current day |
|
||||
| DateMinTempThisWeek | DateTime | Date when minimum temperature was reached this week |
|
||||
| DateMinTempThisMonth| DateTime | Date when minimum temperature was reached this month |
|
||||
| DateMaxTemp | DateTime | Date when maximum temperature was reached on current day |
|
||||
| DateMaxTempThisWeek | DateTime | Date when maximum temperature was reached this week |
|
||||
| DateMaxTempThisMonth| DateTime | Date when maximum temperature was reached this month |
|
||||
| TimeStamp | DateTime | Timestamp when data was measured |
|
||||
| LastMessage | DateTime | Last message emitted by the module |
|
||||
| LowBattery | Switch | Low battery |
|
||||
|
@ -239,6 +349,8 @@ Number Netatmo_Rain_Current "Rain [%.1f mm]" { channel = "netatmo:NAModule3:home
|
|||
| Rain | Number:Length | Quantity of water |
|
||||
| SumRain1 | Number:Length | Quantity of water on last hour |
|
||||
| SumRain24 | Number:Length | Quantity of water on last day |
|
||||
| SumRainThisWeek | Number:Length | Quantity of water this week |
|
||||
| SumRainThisMonth | Number:Length | Quantity of water this month |
|
||||
| TimeStamp | DateTime | Timestamp when data was measured |
|
||||
| LastMessage | DateTime | Last message emitted by the module |
|
||||
| LowBattery | Switch | Low battery |
|
||||
|
@ -425,8 +537,9 @@ All these channels except welcomePersonAtHome are read only.
|
|||
// Bridge configuration:
|
||||
Bridge netatmo:netatmoapi:home "Netatmo API" [ clientId="*********", clientSecret="**********", username = "mail@example.com", password = "******", readStation=true, readThermostat=false] {
|
||||
// Thing configuration:
|
||||
Thing NAMain inside "Netatmo Inside" [ id="aa:aa:aa:aa:aa:aa" ]
|
||||
Thing NAMain inside "Netatmo Inside" [ id="aa:aa:aa:aa:aa:aa" ]
|
||||
Thing NAModule1 outside "Netatmo Outside" [ id="bb:bb:bb:bb:bb:bb", parentId="aa:aa:aa:aa:aa:aa" ]
|
||||
Thing NAModule3 outside "Netatmo Rain" [ id="cc:cc:cc:cc:cc:cc", parentId="aa:aa:aa:aa:aa:aa" ]
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -435,148 +548,209 @@ Bridge netatmo:netatmoapi:home "Netatmo API" [ clientId="*********", clientSecre
|
|||
|
||||
```
|
||||
# Indoor Module
|
||||
Number:Temperature Netatmo_Indoor_Temperature "Temperature [%.1f %unit%]" <temperature> { channel = "netatmo:NAMain:home:inside:Temperature" }
|
||||
Number:Dimensionless Netatmo_Indoor_Humidity "Humidity [%d %unit%]" <humidity> { channel = "netatmo:NAMain:home:inside:Humidity" }
|
||||
Number Netatmo_Indoor_Humidex "Humidex [%.0f]" <temperature_hot> { channel = "netatmo:NAMain:home:inside:Humidex" }
|
||||
Number:Temperature Netatmo_Indoor_HeatIndex "HeatIndex [%.1f %unit%]" <temperature_hot> { channel = "netatmo:NAMain:home:inside:HeatIndex" }
|
||||
Number:Temperature Netatmo_Indoor_Dewpoint "Dewpoint [%.1f %unit%]" <temperature_cold> { channel = "netatmo:NAMain:home:inside:Dewpoint" }
|
||||
Number:Temperature Netatmo_Indoor_DewpointDepression "DewpointDepression [%.1f %unit%]" <temperature_cold> { channel = "netatmo:NAMain:home:inside:DewpointDepression" }
|
||||
Number:Dimensionless Netatmo_Indoor_Co2 "Co2 [%d %unit%]" <carbondioxide> { channel = "netatmo:NAMain:home:inside:Co2" }
|
||||
Number:Pressure Netatmo_Indoor_Pressure "Pressure [%.1f %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:Pressure" }
|
||||
Number:Pressure Netatmo_Indoor_AbsolutePressure "AbsolutePressure [%.1f %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:AbsolutePressure" }
|
||||
Number:Dimensionless Netatmo_Indoor_Noise "Noise [%d %unit%]" <soundvolume> { channel = "netatmo:NAMain:home:inside:Noise" }
|
||||
Number Netatmo_Indoor_WifiStatus "WifiStatus [%s]" <signal> { channel = "netatmo:NAMain:home:inside:WifiStatus" }
|
||||
DateTime Netatmo_Indoor_TimeStamp "TimeStamp [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:TimeStamp" }
|
||||
Location Netatmo_Indoor_Location "Location" <movecontrol> { channel = "netatmo:NAMain:home:inside:Location" }
|
||||
DateTime Netatmo_Indoor_LastStatusStore "LastStatusStore [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <text> { channel = "netatmo:NAMain:home:inside:LastStatusStore" }
|
||||
Number:Temperature Indoor_Temp "Temperature [%.1f %unit%]" <temperature> { channel = "netatmo:NAMain:home:inside:Temperature" }
|
||||
Number:Temperature Indoor_Min_Temp "Min Temperature Today [%.1f %unit%]" <temperature> { channel = "netatmo:NAMain:home:inside:MinTemp" }
|
||||
Number:Temperature Indoor_Min_Temp_This_Week "Min Temperature This Week [%.1f %unit%]" <temperature> { channel = "netatmo:NAMain:home:inside:MinTempThisWeek" }
|
||||
Number:Temperature Indoor_Min_Temp_This_Month "Min Temperature This Month [%.1f %unit%]" <temperature> { channel = "netatmo:NAMain:home:inside:MinTempThisMonth" }
|
||||
Number:Temperature Indoor_Max_Temp "Max Temperature Today [%.1f %unit%]" <temperature> { channel = "netatmo:NAMain:home:inside:MaxTemp" }
|
||||
Number:Temperature Indoor_Max_Temp_This_Week "Max Temperature This Week [%.1f %unit%]" <temperature> { channel = "netatmo:NAMain:home:inside:MaxTempThisWeek" }
|
||||
Number:Temperature Indoor_Max_Temp_This_Month "Max Temperature This Month [%.1f %unit%]" <temperature> { channel = "netatmo:NAMain:home:inside:MaxTempThisMonth" }
|
||||
DateTime Indoor_Min_Temp_TS "Min Temperature Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinTemp" }
|
||||
DateTime Indoor_Min_Temp_This_Week_TS "Min Temperature This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinTempThisWeek" }
|
||||
DateTime Indoor_Min_Temp_This_Month_TS "Min Temperature This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinTempThisMonth" }
|
||||
DateTime Indoor_Max_Temp_TS "Max Temperature Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxTemp" }
|
||||
DateTime Indoor_Max_Temp_This_Week_TS "Max Temperature This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxTempThisWeek" }
|
||||
DateTime Indoor_Max_Temp_This_Month_TS "Max Temperature This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxTempThisMonth" }
|
||||
Number:Dimensionless Indoor_Humidity "Humidity [%d %unit%]" <humidity> { channel = "netatmo:NAMain:home:inside:Humidity" }
|
||||
Number:Dimensionless Indoor_Min_Humidity "Min Humidity Today [%d %unit%]" <humidity> { channel = "netatmo:NAMain:home:inside:MinHumidity" }
|
||||
Number:Dimensionless Indoor_Min_Humidity_This_Week "Min Humidity This Week [%d %unit%]" <humidity> { channel = "netatmo:NAMain:home:inside:MinHumidityThisWeek" }
|
||||
Number:Dimensionless Indoor_Min_Humidity_This_Month "Min Humidity This Month [%d %unit%]" <humidity> { channel = "netatmo:NAMain:home:inside:MinHumidityThisMonth" }
|
||||
Number:Dimensionless Indoor_Max_Humidity "Max Humidity Today [%d %unit%]" <humidity> { channel = "netatmo:NAMain:home:inside:MaxHumidity" }
|
||||
Number:Dimensionless Indoor_Max_Humidity_This_Week "Max Humidity This Week [%d %unit%]" <humidity> { channel = "netatmo:NAMain:home:inside:MaxHumidityThisWeek" }
|
||||
Number:Dimensionless Indoor_Max_Humidity_This_Month "Max Humidity This Month [%d %unit%]" <humidity> { channel = "netatmo:NAMain:home:inside:MaxHumidityThisMonth" }
|
||||
DateTime Indoor_Min_Humidity_TS "Min Humidity Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinHumidity" }
|
||||
DateTime Indoor_Min_Humidity_This_Week_TS "Min Humidity This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinHumidityThisWeek" }
|
||||
DateTime Indoor_Min_Humidity_This_Month_TS "Min Humidity This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinHumidityThisMonth" }
|
||||
DateTime Indoor_Max_Humidity_TS "Max Humidity Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxHumidity" }
|
||||
DateTime Indoor_Max_Humidity_This_Week_TS "Max Humidity This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxHumidityThisWeek" }
|
||||
DateTime Indoor_Max_Humidity_This_Month_TS "Max Humidity This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxHumidityThisMonth" }
|
||||
Number Indoor_Humidex "Humidex [%.0f]" <temperature_hot> { channel = "netatmo:NAMain:home:inside:Humidex" }
|
||||
Number:Temperature Indoor_HeatIndex "HeatIndex [%.1f %unit%]" <temperature_hot> { channel = "netatmo:NAMain:home:inside:HeatIndex" }
|
||||
Number:Temperature Indoor_Dewpoint "Dewpoint [%.1f %unit%]" <temperature_cold> { channel = "netatmo:NAMain:home:inside:Dewpoint" }
|
||||
Number:Temperature Indoor_DewpointDepression "DewpointDepression [%.1f %unit%]" <temperature_cold> { channel = "netatmo:NAMain:home:inside:DewpointDepression" }
|
||||
Number:Dimensionless Indoor_Co2 "CO2 [%d %unit%]" <carbondioxide> { channel = "netatmo:NAMain:home:inside:Co2" }
|
||||
Number:Dimensionless Indoor_Min_Co2 "Min CO2 Today [%.1f %unit%]" <carbondioxide> { channel = "netatmo:NAMain:home:inside:MinCo2" }
|
||||
Number:Dimensionless Indoor_Min_Co2_This_Week "Min CO2 This Week [%.1f %unit%]" <carbondioxide> { channel = "netatmo:NAMain:home:inside:MinCo2ThisWeek" }
|
||||
Number:Dimensionless Indoor_Min_Co2_This_Month "Min CO2 This Month [%.1f %unit%]" <carbondioxide> { channel = "netatmo:NAMain:home:inside:MinCo2ThisMonth" }
|
||||
Number:Dimensionless Indoor_Max_Co2 "Max CO2 Today [%.1f %unit%]" <carbondioxide> { channel = "netatmo:NAMain:home:inside:MaxCo2" }
|
||||
Number:Dimensionless Indoor_Max_Co2_This_Week "Max CO2 This Week [%.1f %unit%]" <carbondioxide> { channel = "netatmo:NAMain:home:inside:MaxCo2ThisWeek" }
|
||||
Number:Dimensionless Indoor_Max_Co2_This_Month "Max CO2 This Month [%.1f %unit%]" <carbondioxide> { channel = "netatmo:NAMain:home:inside:MaxCo2ThisMonth" }
|
||||
DateTime Indoor_Min_Co2_TS "Min CO2 Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinCo2" }
|
||||
DateTime Indoor_Min_Co2_This_Week_TS "Min CO2 This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinCo2ThisWeek" }
|
||||
DateTime Indoor_Min_Co2_This_Month_TS "Min CO2 This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinCo2ThisMonth" }
|
||||
DateTime Indoor_Max_Co2_TS "Max CO2 Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxCo2" }
|
||||
DateTime Indoor_Max_Co2_This_Week_TS "Max CO2 This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxCo2ThisWeek" }
|
||||
DateTime Indoor_Max_Co2_This_Month_TS "Max CO2 This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxCo2ThisMonth" }
|
||||
Number:Pressure Indoor_Pressure "Pressure [%.1f %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:Pressure" }
|
||||
Number:Pressure Indoor_Min_Pressure "Min Pressure Today [%d %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:MinPressure" }
|
||||
Number:Pressure Indoor_Min_Pressure_This_Week "Min Pressure This Week [%d %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:MinPressureThisWeek" }
|
||||
Number:Pressure Indoor_Min_Pressure_This_Month "Min Pressure This Month [%d %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:MinPressureThisMonth" }
|
||||
Number:Pressure Indoor_Max_Pressure "Max Pressure Today [%d %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:MaxPressure" }
|
||||
Number:Pressure Indoor_Max_Pressure_This_Week "Max Pressure This Week [%d %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:MaxPressureThisWeek" }
|
||||
Number:Pressure Indoor_Max_Pressure_This_Month "Max Pressure This Month [%d %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:MaxPressureThisMonth" }
|
||||
DateTime Indoor_Min_Pressure_TS "Min Pressure Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinPressure" }
|
||||
DateTime Indoor_Min_Pressure_This_Week_TS "Min Pressure This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinPressureThisWeek" }
|
||||
DateTime Indoor_Min_Pressure_This_Month_TS "Min Pressure This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinPressureThisMonth" }
|
||||
DateTime Indoor_Max_Pressure_TS "Max Pressure Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxPressure" }
|
||||
DateTime Indoor_Max_Pressure_This_Week_TS "Max Pressure This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxPressureThisWeek" }
|
||||
DateTime Indoor_Max_Pressure_This_Month_TS "Max Pressure This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxPressureThisMonth" }
|
||||
Number:Pressure Indoor_AbsolutePressure "AbsolutePressure [%.1f %unit%]" <pressure> { channel = "netatmo:NAMain:home:inside:AbsolutePressure" }
|
||||
Number:Dimensionless Indoor_Noise "Noise [%d %unit%]" <soundvolume> { channel = "netatmo:NAMain:home:inside:Noise" }
|
||||
Number:Dimensionless Indoor_Min_Noise "Min Noise Today [%.1f %unit%]" <soundvolume> { channel = "netatmo:NAMain:home:inside:MinNoise" }
|
||||
Number:Dimensionless Indoor_Min_Noise_This_Week "Min Noise This Week [%.1f %unit%]" <soundvolume> { channel = "netatmo:NAMain:home:inside:MinNoiseThisWeek" }
|
||||
Number:Dimensionless Indoor_Min_Noise_This_Month "Min Noise This Month [%.1f %unit%]" <soundvolume> { channel = "netatmo:NAMain:home:inside:MinNoiseThisMonth" }
|
||||
Number:Dimensionless Indoor_Max_Noise "Max Noise Today [%.1f %unit%]" <soundvolume> { channel = "netatmo:NAMain:home:inside:MaxNoise" }
|
||||
Number:Dimensionless Indoor_Max_Noise_This_Week "Max Noise This Week [%.1f %unit%]" <soundvolume> { channel = "netatmo:NAMain:home:inside:MaxNoiseThisWeek" }
|
||||
Number:Dimensionless Indoor_Max_Noise_This_Month "Max Noise This Month [%.1f %unit%]" <soundvolume> { channel = "netatmo:NAMain:home:inside:MaxNoiseThisMonth" }
|
||||
DateTime Indoor_Min_Noise_TS "Min Noise Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinNoise" }
|
||||
DateTime Indoor_Min_Noise_This_Week_TS "Min Noise This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinNoiseThisWeek" }
|
||||
DateTime Indoor_Min_Noise_This_Month_TS "Min Noise This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMinNoiseThisMonth" }
|
||||
DateTime Indoor_Max_Noise_TS "Max Noise Today [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxNoise" }
|
||||
DateTime Indoor_Max_Noise_This_Week_TS "Max Noise This Week [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxNoiseThisWeek" }
|
||||
DateTime Indoor_Max_Noise_This_Month_TS "Max Noise This Month [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:DateMaxNoiseThisMonth" }
|
||||
Number Indoor_WifiStatus "WifiStatus [%s]" <signal> { channel = "netatmo:NAMain:home:inside:WifiStatus" }
|
||||
DateTime Indoor_TimeStamp "TimeStamp [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAMain:home:inside:TimeStamp" }
|
||||
Location Indoor_Location "Location" <movecontrol> { channel = "netatmo:NAMain:home:inside:Location" }
|
||||
DateTime Indoor_LastStatusStore "LastStatusStore [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <text> { channel = "netatmo:NAMain:home:inside:LastStatusStore" }
|
||||
|
||||
# Outdoor Module
|
||||
Number:Temperature Netatmo_Outdoor_Temperature "Temperature [%.1f %unit%]" <temperature> { channel = "netatmo:NAModule1:home:outside:Temperature" }
|
||||
String Netatmo_Outdoor_TempTrend "TempTrend [%s]" <line> { channel = "netatmo:NAModule1:home:outside:TempTrend" }
|
||||
Number:Dimensionless Netatmo_Outdoor_Humidity "Humidity [%d %unit%]" <humidity> { channel = "netatmo:NAModule1:home:outside:Humidity" }
|
||||
Number Netatmo_Outdoor_Humidex "Humidex [%.0f]" <temperature_hot> { channel = "netatmo:NAModule1:home:outside:Humidex" }
|
||||
Number:Temperature Netatmo_Outdoor_HeatIndex "HeatIndex [%.1f %unit%]" <temperature_hot> { channel = "netatmo:NAModule1:home:outside:HeatIndex" }
|
||||
Number:Temperature Netatmo_Outdoor_Dewpoint "Dewpoint [%.1f %unit%]" <temperature_cold> { channel = "netatmo:NAModule1:home:outside:Dewpoint" }
|
||||
Number:Temperature Netatmo_Outdoor_DewpointDepression "DewpointDepression [%.1f %unit%]" <temperature_cold> { channel = "netatmo:NAModule1:home:outside:DewpointDepression" }
|
||||
Number Netatmo_Outdoor_RfStatus "RfStatus [%.0f / 5]" <signal> { channel = "netatmo:NAModule1:home:outside:RfStatus" }
|
||||
Switch Netatmo_Outdoor_LowBattery "LowBattery [%s]" <siren> { channel = "netatmo:NAModule1:home:outside:LowBattery" }
|
||||
Number Netatmo_Outdoor_BatteryVP "BatteryVP [%.0f %%]" <battery> { channel = "netatmo:NAModule1:home:outside:BatteryVP" }
|
||||
DateTime Netatmo_Outdoor_TimeStamp "TimeStamp [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAModule1:home:outside:TimeStamp" }
|
||||
DateTime Netatmo_Outdoor_LastMessage "LastMessage [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <text> { channel = "netatmo:NAModule1:home:outside:LastMessage" }
|
||||
Number:Temperature Outdoor_Temperature "Temperature [%.1f %unit%]" <temperature> { channel = "netatmo:NAModule1:home:outside:Temperature" }
|
||||
String Outdoor_TempTrend "TempTrend [%s]" <line> { channel = "netatmo:NAModule1:home:outside:TempTrend" }
|
||||
Number:Dimensionless Outdoor_Humidity "Humidity [%d %unit%]" <humidity> { channel = "netatmo:NAModule1:home:outside:Humidity" }
|
||||
Number Outdoor_Humidex "Humidex [%.0f]" <temperature_hot> { channel = "netatmo:NAModule1:home:outside:Humidex" }
|
||||
Number:Temperature Outdoor_HeatIndex "HeatIndex [%.1f %unit%]" <temperature_hot> { channel = "netatmo:NAModule1:home:outside:HeatIndex" }
|
||||
Number:Temperature Outdoor_Dewpoint "Dewpoint [%.1f %unit%]" <temperature_cold> { channel = "netatmo:NAModule1:home:outside:Dewpoint" }
|
||||
Number:Temperature Outdoor_DewpointDepression "DewpointDepression [%.1f %unit%]" <temperature_cold> { channel = "netatmo:NAModule1:home:outside:DewpointDepression" }
|
||||
Number Outdoor_RfStatus "RfStatus [%.0f / 5]" <signal> { channel = "netatmo:NAModule1:home:outside:RfStatus" }
|
||||
Switch Outdoor_LowBattery "LowBattery [%s]" <siren> { channel = "netatmo:NAModule1:home:outside:LowBattery" }
|
||||
Number Outdoor_BatteryVP "BatteryVP [%.0f %%]" <battery> { channel = "netatmo:NAModule1:home:outside:BatteryVP" }
|
||||
DateTime Outdoor_TimeStamp "TimeStamp [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <calendar> { channel = "netatmo:NAModule1:home:outside:TimeStamp" }
|
||||
DateTime Outdoor_LastMessage "LastMessage [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" <text> { channel = "netatmo:NAModule1:home:outside:LastMessage" }
|
||||
|
||||
# Rain Module
|
||||
Number:Length Rain_Hour "Rain Last Hour [%.02f %unit%]" <rain> {channel="netatmo:NAModule3:home:rain:SumRain1"}
|
||||
Number:Length Rain_Today "Rain Today [%.02f %unit%]" <rain> {channel="netatmo:NAModule3:home:rain:SumRain24"}
|
||||
Number:Length Rain_Week "Rain This Week [%.02f %unit%]" <rain> {channel="netatmo:NAModule3:home:rain:SumRainThisWeek"}
|
||||
Number:Length Rain_Month "Rain This Month [%.02f %unit%]" <rain> {channel="netatmo:NAModule3:home:rain:SumRainThisMonth"}
|
||||
Number Rain_BatteryVP "Rain battery status [%d%%]" <battery> {channel="netatmo:NAModule3:home:rain:BatteryVP"}
|
||||
```
|
||||
|
||||
|
||||
## sitemaps/netatmo.sitemap
|
||||
|
||||
```
|
||||
sitemap netatmo label="Netatmo"
|
||||
{
|
||||
sitemap netatmo label="Netatmo" {
|
||||
Frame label="Indoor" {
|
||||
Text item=Netatmo_Indoor_Temperature
|
||||
Text item=Netatmo_Indoor_Humidity
|
||||
Text item=Netatmo_Indoor_Humidex valuecolor=[<20.1="green",<29.1="blue",<28.1="yellow",<45.1="orange",<54.1="red",>54.1="maroon"]
|
||||
Text item=Netatmo_Indoor_HeatIndex
|
||||
Text item=Netatmo_Indoor_Dewpoint
|
||||
Text item=Netatmo_Indoor_DewpointDepression
|
||||
Text item=Netatmo_Indoor_Co2 valuecolor=[<800="green",<1000="orange",<1400="red",>1399="maroon"]
|
||||
Text item=Netatmo_Indoor_Pressure
|
||||
Text item=Netatmo_Indoor_AbsolutePressure
|
||||
Text item=Netatmo_Indoor_Noise
|
||||
Text item=Netatmo_Indoor_WifiStatus
|
||||
Text item=Netatmo_Indoor_TimeStamp
|
||||
Text item=Netatmo_Indoor_Location
|
||||
Text item=Netatmo_Indoor_LastStatusStore
|
||||
Text item=Indoor_Temp
|
||||
Text item=Indoor_Min_Temp
|
||||
Text item=Indoor_Min_Temp_This_Week
|
||||
Text item=Indoor_Min_Temp_This_Month
|
||||
Text item=Indoor_Max_Temp
|
||||
Text item=Indoor_Max_Temp_This_Week
|
||||
Text item=Indoor_Max_Temp_This_Month
|
||||
Text item=Indoor_Min_Temp_TS
|
||||
Text item=Indoor_Min_Temp_This_Week_TS
|
||||
Text item=Indoor_Min_Temp_This_Month_TS
|
||||
Text item=Indoor_Max_Temp_TS
|
||||
Text item=Indoor_Max_Temp_This_Week_TS
|
||||
Text item=Indoor_Max_Temp_This_Month_TS
|
||||
Text item=Indoor_Humidity
|
||||
Text item=Indoor_Min_Humidity
|
||||
Text item=Indoor_Min_Humidity_This_Week
|
||||
Text item=Indoor_Min_Humidity_This_Month
|
||||
Text item=Indoor_Max_Humidity
|
||||
Text item=Indoor_Max_Humidity_This_Week
|
||||
Text item=Indoor_Max_Humidity_This_Month
|
||||
Text item=Indoor_Min_Humidity_TS
|
||||
Text item=Indoor_Min_Humidity_This_Week_TS
|
||||
Text item=Indoor_Min_Humidity_This_Month_TS
|
||||
Text item=Indoor_Max_Humidity_TS
|
||||
Text item=Indoor_Max_Humidity_This_Week_TS
|
||||
Text item=Indoor_Max_Humidity_This_Month_TS
|
||||
Text item=Indoor_Humidex valuecolor=[<20.1="green",<29.1="blue",<28.1="yellow",<45.1="orange",<54.1="red",>54.1="maroon"]
|
||||
Text item=Indoor_HeatIndex
|
||||
Text item=Indoor_Dewpoint
|
||||
Text item=Indoor_DewpointDepression
|
||||
Text item=Indoor_Co2 valuecolor=[<800="green",<1000="orange",<1400="red",>1399="maroon"]
|
||||
Text item=Indoor_Min_Co2 valuecolor=[<800="green",<1000="orange",<1400="red",>1399="maroon"]
|
||||
Text item=Indoor_Min_Co2_This_Week valuecolor=[<800="green",<1000="orange",<1400="red",>1399="maroon"]
|
||||
Text item=Indoor_Min_Co2_This_Month valuecolor=[<800="green",<1000="orange",<1400="red",>1399="maroon"]
|
||||
Text item=Indoor_Max_Co2 valuecolor=[<800="green",<1000="orange",<1400="red",>1399="maroon"]
|
||||
Text item=Indoor_Max_Co2_This_Week valuecolor=[<800="green",<1000="orange",<1400="red",>1399="maroon"]
|
||||
Text item=Indoor_Max_Co2_This_Month valuecolor=[<800="green",<1000="orange",<1400="red",>1399="maroon"]
|
||||
Text item=Indoor_Min_Co2_TS
|
||||
Text item=Indoor_Min_Co2_This_Week_TS
|
||||
Text item=Indoor_Min_Co2_This_Month_TS
|
||||
Text item=Indoor_Max_Co2_TS
|
||||
Text item=Indoor_Max_Co2_This_Week_TS
|
||||
Text item=Indoor_Max_Co2_This_Month_TS
|
||||
Text item=Indoor_Pressure
|
||||
Text item=Indoor_Min_Pressure
|
||||
Text item=Indoor_Min_Pressure_This_Week
|
||||
Text item=Indoor_Min_Pressure_This_Month
|
||||
Text item=Indoor_Max_Pressure
|
||||
Text item=Indoor_Max_Pressure_This_Week
|
||||
Text item=Indoor_Max_Pressure_This_Month
|
||||
Text item=Indoor_Min_Pressure_TS
|
||||
Text item=Indoor_Min_Pressure_This_Week_TS
|
||||
Text item=Indoor_Min_Pressure_This_Month_TS
|
||||
Text item=Indoor_Max_Pressure_TS
|
||||
Text item=Indoor_Max_Pressure_This_Week_TS
|
||||
Text item=Indoor_Max_Pressure_This_Month_TS
|
||||
Text item=Indoor_AbsolutePressure
|
||||
Text item=Indoor_Noise
|
||||
Text item=Indoor_Min_Noise
|
||||
Text item=Indoor_Min_Noise_This_Week
|
||||
Text item=Indoor_Min_Noise_This_Month
|
||||
Text item=Indoor_Max_Noise
|
||||
Text item=Indoor_Max_Noise_This_Week
|
||||
Text item=Indoor_Max_Noise_This_Month
|
||||
Text item=Indoor_Min_Noise_TS
|
||||
Text item=Indoor_Min_Noise_This_Week_TS
|
||||
Text item=Indoor_Min_Noise_This_Month_TS
|
||||
Text item=Indoor_Max_Noise_TS
|
||||
Text item=Indoor_Max_Noise_This_Week_TS
|
||||
Text item=Indoor_Max_Noise_This_Month_TS
|
||||
Text item=Indoor_WifiStatus
|
||||
Text item=Indoor_TimeStamp
|
||||
Text item=Indoor_Location
|
||||
Text item=Indoor_LastStatusStore
|
||||
}
|
||||
Frame label="Outdoor" {
|
||||
Text item=Netatmo_Outdoor_Temperature
|
||||
Text item=Netatmo_Outdoor_TempTrend
|
||||
Text item=Netatmo_Outdoor_Humidity
|
||||
Text item=Netatmo_Outdoor_Humidex
|
||||
Text item=Netatmo_Outdoor_HeatIndex
|
||||
Text item=Netatmo_Outdoor_Dewpoint
|
||||
Text item=Netatmo_Outdoor_DewpointDepression
|
||||
Text item=Netatmo_Outdoor_RfStatus
|
||||
Text item=Netatmo_Outdoor_LowBattery
|
||||
Text item=Netatmo_Outdoor_BatteryVP valuecolor=[>60="green",>45="orange",>36="red",>0="maroon"]
|
||||
Text item=Netatmo_Outdoor_TimeStamp
|
||||
Text item=Netatmo_Outdoor_LastMessage
|
||||
Frame label="Outdoor" {
|
||||
Text item=Outdoor_Temperature
|
||||
Text item=Outdoor_TempTrend
|
||||
Text item=Outdoor_Humidity
|
||||
Text item=Outdoor_Humidex valuecolor=[<20.1="green",<29.1="blue",<28.1="yellow",<45.1="orange",<54.1="red",>54.1="maroon"]
|
||||
Text item=Outdoor_HeatIndex
|
||||
Text item=Outdoor_Dewpoint
|
||||
Text item=Outdoor_DewpointDepression
|
||||
Text item=Outdoor_RfStatus
|
||||
Text item=Outdoor_LowBattery
|
||||
Text item=Outdoor_BatteryVP
|
||||
Text item=Outdoor_TimeStamp
|
||||
Text item=Outdoor_LastMessage
|
||||
}
|
||||
Frame label="Rain" {
|
||||
Text item=Rain_Hour
|
||||
Text item=Rain_Today
|
||||
Text item=Rain_Week
|
||||
Text item=Rain_Month
|
||||
Text item=Rain_BatteryVP
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
# Common problems
|
||||
|
||||
|
||||
## Missing Certificate Authority
|
||||
|
||||
This version of the binding has been modified to avoid the need to import StartCom certificate in the local JDK certificate store.
|
||||
|
||||
```
|
||||
javax.net.ssl.SSLHandshakeException:
|
||||
sun.security.validator.ValidatorException:
|
||||
PKIX path building failed:
|
||||
sun.security.provider.certpath.SunCertPathBuilderException:
|
||||
unable to find valid certification path to requested target
|
||||
```
|
||||
|
||||
can be solved by installing the StartCom CA Certificate into the local JDK like this:
|
||||
|
||||
* Download the certificate from https://www.startssl.com/certs/ca.pem or use wget https://www.startssl.com/certs/ca.pem
|
||||
* Then import it into the keystore (the password is "changeit")
|
||||
|
||||
```
|
||||
$JAVA_HOME/bin/keytool -import -keystore $JAVA_HOME/jre/lib/security/cacerts -alias StartCom-Root-CA -file ca.pem
|
||||
```
|
||||
|
||||
If `$JAVA_HOME` is not set then run the command:
|
||||
|
||||
```
|
||||
update-alternatives --list java
|
||||
```
|
||||
|
||||
This should output something similar to:
|
||||
|
||||
```
|
||||
/usr/lib/jvm/java-8-oracle/jre/bin/java
|
||||
```
|
||||
|
||||
Use everything before /jre/... to set the JAVA_HOME environment variable:
|
||||
|
||||
```
|
||||
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
|
||||
```
|
||||
|
||||
After you set the environment variable, try:
|
||||
|
||||
```
|
||||
ls -l $JAVA_HOME/jre/lib/security/cacerts
|
||||
```
|
||||
|
||||
If it is set correctly then you should see something similar to:
|
||||
|
||||
```
|
||||
-rw-r--r-- 1 root root 101992 Nov 4 10:54 /usr/lib/jvm/java-8-oracle/jre/lib/security/cacerts
|
||||
```
|
||||
|
||||
Now try and rerun the keytool command.
|
||||
If you didn't get errors, you should be good to go [source](http://jinahya.wordpress.com/2013/04/28/installing-the-startcom-ca-certifcate-into-the-local-jdk/).
|
||||
|
||||
Alternative approach if above solution does not work:
|
||||
|
||||
```
|
||||
sudo keytool -delete -alias StartCom-Root-CA -keystore $JAVA_HOME/jre/lib/security/cacerts -storepass changeit
|
||||
```
|
||||
|
||||
Download the certificate from https://api.netatmo.net to `$JAVA_HOME/jre/lib/security/` and save it as api.netatmo.net.crt (X.509 / PEM).
|
||||
|
||||
```
|
||||
sudo $JAVA_HOME/bin/keytool -import -keystore $JAVA_HOME/jre/lib/security/cacerts -alias StartCom-Root-CA -file api.netatmo.net.crt
|
||||
```
|
||||
|
||||
The password is "changeit".
|
||||
|
||||
|
||||
# Sample data
|
||||
|
||||
If you want to evaluate this binding but have not got a Netatmo station yourself
|
||||
|
|
|
@ -305,7 +305,7 @@ Bridge nikohomecontrol:bridge2:nhc2 [ addr="192.168.0.70", port=8884, password="
|
|||
dimmer 3 "DiningRoom" [ actionId="abcdef01-abcd-1234-ab98-abcdef012345", step=5 ]
|
||||
blind 4 [ actionId="abcdef01-abcd-1234-ab98-abcdefabcdef" ]
|
||||
thermostat 5 [ thermostatId="abcdef01-abcd-1234-ab98-012345abcdef", overruleTime=10 ]
|
||||
electricitymeter 5 [ electricityMeterId="abcdef01-abcd-1234-cd56-ffee34567890" ]
|
||||
electricitymeter 6 [ energyMeterId="abcdef01-abcd-1234-cd56-ffee34567890" ]
|
||||
}
|
||||
|
||||
Bridge nikohomecontrol:bridge:nhc3 [ addr="192.168.0.110" ] {
|
||||
|
@ -328,7 +328,7 @@ Number ThermostatMode {channel="nikohomecontrol:thermostat:nhc1:5:mode"}
|
|||
Number:Temperature SetTemperature "[%.1f °C]" {channel="nikohomecontrol:thermostat:nhc1:5:setpoint"} # Get and set target temperature in °C
|
||||
Number OverruleDuration {channel="nikohomecontrol:thermostat:nhc1:5:overruletime} # Get and set the overrule time
|
||||
Number ThermostatDemand {channel="nikohomecontrol:thermostat:nhc1:5:demand} # Get the current heating/cooling demand
|
||||
Number:Power CurPower "[%.0f W]" {channel="nikohomecontrol:electricitymeter:nhc2:6:power"} # Get current power consumption
|
||||
Number:Power CurPower "[%.0f W]" {channel="nikohomecontrol:energyMeter:nhc2:6:power"} # Get current power consumption
|
||||
```
|
||||
|
||||
.sitemap:
|
||||
|
|
|
@ -94,23 +94,24 @@ Once the parameter `forecastDays` will be changed, the available channel groups
|
|||
|
||||
### Current Weather
|
||||
|
||||
| Channel Group ID | Channel ID | Item Type | Description |
|
||||
|------------------|----------------|----------------------|-------------------------------------------------------------------------|
|
||||
| current | time-stamp | DateTime | Time of data observation. |
|
||||
| current | condition | String | Current weather condition. |
|
||||
| current | condition-id | String | Id of the current weather condition. **Advanced** |
|
||||
| current | icon | Image | Icon representing the current weather condition. |
|
||||
| current | icon-id | String | Id of the icon representing the current weather condition. **Advanced** |
|
||||
| current | temperature | Number:Temperature | Current temperature. |
|
||||
| current | pressure | Number:Pressure | Current barometric pressure. |
|
||||
| current | humidity | Number:Dimensionless | Current atmospheric humidity. |
|
||||
| current | wind-speed | Number:Speed | Current wind speed. |
|
||||
| current | wind-direction | Number:Angle | Current wind direction. |
|
||||
| current | gust-speed | Number:Speed | Current gust speed. **Advanced** |
|
||||
| current | cloudiness | Number:Dimensionless | Current cloudiness. |
|
||||
| current | rain | Number:Length | Rain volume of the last hour. |
|
||||
| current | snow | Number:Length | Snow volume of the last hour. |
|
||||
| current | visibility | Number:Length | Current visibility. |
|
||||
| Channel Group ID | Channel ID | Item Type | Description |
|
||||
|------------------|----------------------|----------------------|-------------------------------------------------------------------------|
|
||||
| current | time-stamp | DateTime | Time of data observation. |
|
||||
| current | condition | String | Current weather condition. |
|
||||
| current | condition-id | String | Id of the current weather condition. **Advanced** |
|
||||
| current | icon | Image | Icon representing the current weather condition. |
|
||||
| current | icon-id | String | Id of the icon representing the current weather condition. **Advanced** |
|
||||
| current | temperature | Number:Temperature | Current temperature. |
|
||||
| current | apparent-temperature | Number:Temperature | Current apparent temperature. |
|
||||
| current | pressure | Number:Pressure | Current barometric pressure. |
|
||||
| current | humidity | Number:Dimensionless | Current atmospheric humidity. |
|
||||
| current | wind-speed | Number:Speed | Current wind speed. |
|
||||
| current | wind-direction | Number:Angle | Current wind direction. |
|
||||
| current | gust-speed | Number:Speed | Current gust speed. **Advanced** |
|
||||
| current | cloudiness | Number:Dimensionless | Current cloudiness. |
|
||||
| current | rain | Number:Length | Rain volume of the last hour. |
|
||||
| current | snow | Number:Length | Snow volume of the last hour. |
|
||||
| current | visibility | Number:Length | Current visibility. |
|
||||
|
||||
**Attention**: Rain item is showing "1h" in the case when data are received from weather stations directly.
|
||||
The fact is that some METAR stations do not have precipitation indicators or do not measure precipitation conditions due to some other technical reasons.
|
||||
|
@ -120,44 +121,46 @@ The "3h" value will be divided by three to always have an estimated value for on
|
|||
|
||||
### 3 Hour Forecast
|
||||
|
||||
| Channel Group ID | Channel ID | Item Type | Description |
|
||||
|--------------------------------------------------------|-----------------|----------------------|----------------------------------------------------------------------------|
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | time-stamp | DateTime | Time of data forecasted. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | condition | String | Forecast weather condition. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | condition-id | String | Id of the forecasted weather condition. **Advanced** |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | icon | Image | Icon representing the forecasted weather condition. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | icon-id | String | Id of the icon representing the forecasted weather condition. **Advanced** |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | temperature | Number:Temperature | Forecasted temperature. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | min-temperature | Number:Temperature | Minimum forecasted temperature. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | max-temperature | Number:Temperature | Maximum forecasted temperature. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | pressure | Number:Pressure | Forecasted barometric pressure. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | humidity | Number:Dimensionless | Forecasted atmospheric humidity. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | wind-speed | Number:Speed | Forecasted wind speed. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | wind-direction | Number:Angle | Forecasted wind direction. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | gust-speed | Number:Speed | Forecasted gust speed. **Advanced** |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | cloudiness | Number:Dimensionless | Forecasted cloudiness. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | rain | Number:Length | Expected rain volume. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | snow | Number:Length | Expected snow volume. |
|
||||
| Channel Group ID | Channel ID | Item Type | Description |
|
||||
|--------------------------------------------------------|----------------------|----------------------|----------------------------------------------------------------------------|
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | time-stamp | DateTime | Time of data forecasted. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | condition | String | Forecast weather condition. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | condition-id | String | Id of the forecasted weather condition. **Advanced** |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | icon | Image | Icon representing the forecasted weather condition. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | icon-id | String | Id of the icon representing the forecasted weather condition. **Advanced** |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | temperature | Number:Temperature | Forecasted temperature. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | apparent-temperature | Number:Temperature | Forecasted apparent temperature. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | min-temperature | Number:Temperature | Minimum forecasted temperature. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | max-temperature | Number:Temperature | Maximum forecasted temperature. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | pressure | Number:Pressure | Forecasted barometric pressure. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | humidity | Number:Dimensionless | Forecasted atmospheric humidity. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | wind-speed | Number:Speed | Forecasted wind speed. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | wind-direction | Number:Angle | Forecasted wind direction. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | gust-speed | Number:Speed | Forecasted gust speed. **Advanced** |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | cloudiness | Number:Dimensionless | Forecasted cloudiness. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | rain | Number:Length | Expected rain volume. |
|
||||
| forecastHours03, forecastHours06, ... forecastHours120 | snow | Number:Length | Expected snow volume. |
|
||||
|
||||
### Daily Forecast
|
||||
|
||||
| Channel Group ID | Channel ID | Item Type | Description |
|
||||
|------------------------------------------------------------------|-----------------|----------------------|----------------------------------------------------------------------------|
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | time-stamp | DateTime | Date of data forecasted. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | condition | String | Forecast weather condition. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | condition-id | String | Id of the forecasted weather condition. **Advanced** |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | icon | Image | Icon representing the forecasted weather condition. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | icon-id | String | Id of the icon representing the forecasted weather condition. **Advanced** |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | min-temperature | Number:Temperature | Minimum forecasted temperature of a day. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | max-temperature | Number:Temperature | Maximum forecasted temperature of a day. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | pressure | Number:Pressure | Forecasted barometric pressure. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | humidity | Number:Dimensionless | Forecasted atmospheric humidity. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | wind-speed | Number:Speed | Forecasted wind speed. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | wind-direction | Number:Angle | Forecasted wind direction. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | gust-speed | Number:Speed | Forecasted gust speed. **Advanced** |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | cloudiness | Number:Dimensionless | Forecasted cloudiness. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | rain | Number:Length | Expected rain volume of a day. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | snow | Number:Length | Expected snow volume of a day. |
|
||||
| Channel Group ID | Channel ID | Item Type | Description |
|
||||
|------------------------------------------------------------------|----------------------|----------------------|----------------------------------------------------------------------------|
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | time-stamp | DateTime | Date of data forecasted. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | condition | String | Forecast weather condition. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | condition-id | String | Id of the forecasted weather condition. **Advanced** |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | icon | Image | Icon representing the forecasted weather condition. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | icon-id | String | Id of the icon representing the forecasted weather condition. **Advanced** |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | apparent-temperature | Number:Temperature | Forecasted apparent temperature. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | min-temperature | Number:Temperature | Minimum forecasted temperature of a day. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | max-temperature | Number:Temperature | Maximum forecasted temperature of a day. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | pressure | Number:Pressure | Forecasted barometric pressure. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | humidity | Number:Dimensionless | Forecasted atmospheric humidity. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | wind-speed | Number:Speed | Forecasted wind speed. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | wind-direction | Number:Angle | Forecasted wind direction. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | gust-speed | Number:Speed | Forecasted gust speed. **Advanced** |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | cloudiness | Number:Dimensionless | Forecasted cloudiness. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | rain | Number:Length | Expected rain volume of a day. |
|
||||
| forecastToday, forecastTomorrow, forecastDay2, ... forecastDay16 | snow | Number:Length | Expected snow volume of a day. |
|
||||
|
||||
### UV Index
|
||||
|
||||
|
@ -193,6 +196,7 @@ DateTime localLastMeasurement "Timestamp of last measurement [%1$tY-%1$tm-%1$tdT
|
|||
String localCurrentCondition "Current condition [%s]" <sun_clouds> { channel="openweathermap:weather-and-forecast:api:local:current#condition" }
|
||||
Image localCurrentConditionIcon "Icon" { channel="openweathermap:weather-and-forecast:api:local:current#icon" }
|
||||
Number:Temperature localCurrentTemperature "Current temperature [%.1f %unit%]" <temperature> { channel="openweathermap:weather-and-forecast:api:local:current#temperature" }
|
||||
Number:Temperature localCurrentApparentTemperature "Current apparent temperature [%.1f %unit%]" <temperature> { channel="openweathermap:weather-and-forecast:api:local:current#apparent-temperature" }
|
||||
Number:Pressure localCurrentPressure "Current barometric pressure [%.1f %unit%]" <pressure> { channel="openweathermap:weather-and-forecast:api:local:current#pressure" }
|
||||
Number:Dimensionless localCurrentHumidity "Current atmospheric humidity [%d %unit%]" <humidity> { channel="openweathermap:weather-and-forecast:api:local:current#humidity" }
|
||||
Number:Speed localCurrentWindSpeed "Current wind speed [%.1f km/h]" <wind> { channel="openweathermap:weather-and-forecast:api:local:current#wind-speed" }
|
||||
|
@ -267,6 +271,7 @@ sitemap demo label="OpenWeatherMap" {
|
|||
Text item=localCurrentCondition
|
||||
Image item=localCurrentConditionIcon
|
||||
Text item=localCurrentTemperature
|
||||
Text item=localCurrentApparentTemperature
|
||||
Text item=localCurrentPressure
|
||||
Text item=localCurrentHumidity
|
||||
Text item=localCurrentWindSpeed
|
||||
|
|
|
@ -19,7 +19,8 @@ The Plugwise binding adds support to openHAB for [Plugwise](https://www.plugwise
|
|||
|
||||
Users should use the Plugwise [Source](https://www.plugwise.com/source) software to define the network, reset devices or perform firmware upgrades.
|
||||
|
||||
Currently only "V2" of the Plugwise protocol is supported. It is adviced that users of the binding upgrade their devices to the latest firmware using the Plugwise Source software.
|
||||
Currently only "V2" of the Plugwise protocol is supported.
|
||||
It is advised that users of the binding upgrade their devices to the latest firmware using the Plugwise Source software.
|
||||
|
||||
## Supported Things
|
||||
|
||||
|
@ -38,7 +39,6 @@ The binding supports the following Plugwise devices:
|
|||
## Discovery
|
||||
|
||||
Automatic device discovery runs every 3 minutes which can be sped up by starting a manual discovery.
|
||||
The Stick is automatically discovered on unused serial ports.
|
||||
All Circle, Circle+ and Stealth devices are discovered immediately after adding the Stick. Battery powered devices like the Scan, Sense and Switch are discovered when they are awake.
|
||||
The Scan and Sense can be woken by pressing the "Wake" button.
|
||||
The Switch is detected when it is awake after switching the left or right button.
|
||||
|
|
|
@ -161,9 +161,9 @@ The following channels will be translated to local language based on the languag
|
|||
|
||||
```
|
||||
Bridge weathercompany:account:bridge [ apiKey="734982347982374" ] {
|
||||
Thing weathercompany:weather-forecast:forecast "Local Forecast" @ "Home" [locationType="postalCode",postalCode="10001:US",language="en_US",refreshInterval=30]
|
||||
Thing weathercompany:weather-forecast:chitown "Chicago Forecast" @ "Ohare Airport" [apiKey="734982347982374",locationType="iataCode",iataCode="ORD",language="en_US",refreshInterval=30]
|
||||
Thing weathercompany:weather-forecast:miami "Miami Weather" @ "South Beach" [locationType="postalCode",postalCode="33139:US",language="es_US",refreshInterval=30]
|
||||
Thing weathercompany:weather-forecast:forecast "Local Forecast" @ "Home" [locationType="postalCode",postalCode="10001:US",language="en-US",refreshInterval=30]
|
||||
Thing weathercompany:weather-forecast:chitown "Chicago Forecast" @ "Ohare Airport" [apiKey="734982347982374",locationType="iataCode",iataCode="ORD",language="en-US",refreshInterval=30]
|
||||
Thing weathercompany:weather-forecast:miami "Miami Weather" @ "South Beach" [locationType="postalCode",postalCode="33139:US",language="es-US",refreshInterval=30]
|
||||
Thing weathercompany:weather-observations:observations "Local Observations" @ "Home" [pwsStationId="KFLMIAMI208",refreshInterval=30]
|
||||
Thing weathercompany:weather-observations:patagonia "Torres del Paine Weather" @ "Patagonia" [pwsStationId="IPUNTAAR4",refreshInterval=30]
|
||||
}
|
||||
|
|
|
@ -59,9 +59,18 @@ The following table summarises the channels available for the ZW141 -:
|
|||
|
||||
| Channel Name | Channel ID | Channel Type | Category | Item Type |
|
||||
|--------------|------------|--------------|----------|-----------|
|
||||
| Dimmer [Deprecated]| switch_dimmer | switch_dimmer | DimmableLight | Dimmer |
|
||||
| Blinds Control | blinds_control | blinds_control | Blinds | Rollershutter |
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
|
||||
### Dimmer [Deprecated]
|
||||
The brightness channel allows to control the brightness of a light.
|
||||
It is also possible to switch the light on and off.
|
||||
|
||||
The ```switch_dimmer``` channel is of type ```switch_dimmer``` and supports the ```Dimmer``` item and is in the ```DimmableLight``` category.
|
||||
|
||||
**Note:** This channel is marked as deprecated so should not be used.
|
||||
|
||||
### Blinds Control
|
||||
Provides start / stop control of blinds.
|
||||
|
||||
|
|
|
@ -125,59 +125,20 @@ The following table summarises the channels available for the ZW187 -:
|
|||
|
||||
| Channel Name | Channel ID | Channel Type | Category | Item Type |
|
||||
|--------------|------------|--------------|----------|-----------|
|
||||
| Binary Sensor | sensor_binary | sensor_binary | | Switch |
|
||||
| Alarm (system) | alarm_system | alarm_system | | Switch |
|
||||
| Alarm (access) | alarm_access | alarm_access | Door | Switch |
|
||||
| Alarm (power) | alarm_power | alarm_power | Energy | Switch |
|
||||
| Door State | sensor_door | sensor_door | Door | Contact |
|
||||
| Battery Level | battery-level | system.battery_level | Battery | Number |
|
||||
|
||||
### Binary Sensor
|
||||
Indicates if a sensor has triggered.
|
||||
### Door State
|
||||
Indicates if the door/window is open or closed.
|
||||
|
||||
The ```sensor_binary``` channel is of type ```sensor_binary``` and supports the ```Switch``` item. This is a read only channel so will only be updated following state changes from the device.
|
||||
The ```sensor_door``` channel is of type ```sensor_door``` and supports the ```Contact``` item and is in the ```Door``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
The following state translation is provided for this channel to the ```Contact``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| ON | Triggered |
|
||||
| OFF | Untriggered |
|
||||
|
||||
### Alarm (system)
|
||||
Indicates if a system alarm is triggered.
|
||||
|
||||
The ```alarm_system``` channel is of type ```alarm_system``` and supports the ```Switch``` item. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
### Alarm (access)
|
||||
Indicates if the access control alarm is triggered.
|
||||
|
||||
The ```alarm_access``` channel is of type ```alarm_access``` and supports the ```Switch``` item and is in the ```Door``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
### Alarm (power)
|
||||
Indicates if a power alarm is triggered.
|
||||
|
||||
The ```alarm_power``` channel is of type ```alarm_power``` and supports the ```Switch``` item and is in the ```Energy``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
| OPEN | Open |
|
||||
| CLOSED | Closed |
|
||||
|
||||
### Battery Level
|
||||
Represents the battery level as a percentage (0-100%). Bindings for things supporting battery level in a different format (e.g. 4 levels) should convert to a percentage to provide a consistent battery level reading.
|
||||
|
|
|
@ -49,6 +49,7 @@ The following table summarises the channels available for the LZW31-SN -:
|
|||
| LED Strip Effect | config_decimal | config_decimal | | Number |
|
||||
| Default Level (Local) | config_decimal | config_decimal | | Number |
|
||||
| LED Indicator Color | config_decimal | config_decimal | | Number |
|
||||
| LED Indicator Intensity [Deprecated]| config_decimal | config_decimal | | Number |
|
||||
| Protection Local | protection_local | protection_local | | Number |
|
||||
|
||||
### Dimmer
|
||||
|
@ -105,6 +106,13 @@ Generic class for configuration parameter.
|
|||
|
||||
The ```config_decimal``` channel is of type ```config_decimal``` and supports the ```Number``` item.
|
||||
|
||||
### LED Indicator Intensity [Deprecated]
|
||||
Generic class for configuration parameter.
|
||||
|
||||
The ```config_decimal``` channel is of type ```config_decimal``` and supports the ```Number``` item.
|
||||
|
||||
**Note:** This channel is marked as deprecated so should not be used.
|
||||
|
||||
### Protection Local
|
||||
Sets the local protection mode.
|
||||
|
||||
|
@ -381,7 +389,7 @@ This parameter has the configuration ID ```config_20_1``` and is of type ```INTE
|
|||
### Parameter 21: AC Power Type
|
||||
|
||||
AC Power Type
|
||||
This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|
@ -397,7 +405,7 @@ This parameter has the configuration ID ```config_21_1``` and is of type ```INTE
|
|||
### Parameter 22: Switch Type
|
||||
|
||||
Switch Type
|
||||
This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|
|
|
@ -23,11 +23,11 @@ The WA00Z-1 Wall Mounted Switch is simple to set up and can be installed anywher
|
|||
|
||||
### Inclusion Information
|
||||
|
||||
press either button on the WA00Z-1. The green LED should fl ash twice.
|
||||
Press either button on the WA00Z-1. The green LED should flash twice.
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
Remove the switch by pressing either button on the WA00Z-1. The LED will fl ash twice indicating that it has been removed.
|
||||
Remove the switch by pressing either button on the WA00Z-1. The LED will flash twice indicating that it has been removed.
|
||||
|
||||
### Wakeup Information
|
||||
|
||||
|
@ -36,7 +36,7 @@ The WA00Z-1 does not permanently listen for messages sent from the controller -
|
|||
The wakeup period does not impact the devices ability to report events or sensor data. The device can be manually woken with a button press on the device as described below - note that triggering a device to send an event is not the same as a wakeup notification, and this will not allow the controller to communicate with the device.
|
||||
|
||||
|
||||
Not provided
|
||||
Tap the top switch five times in rapid succession.
|
||||
|
||||
## Channels
|
||||
|
||||
|
|
|
@ -0,0 +1,683 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: A89 - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# A89 Multi-purpose sensor
|
||||
This describes the Z-Wave device *A89*, manufactured by *[McoHome Technology Co., Ltd](http://www.mcohome.com/)* with the thing type UID of ```mcohome_a89_255_000```.
|
||||
This version of the device is limited to firmware versions above 255.0
|
||||
|
||||
The device is in the category of *Sensor*, defining Device used to measure something.
|
||||
|
||||

|
||||
|
||||
|
||||
The A89 supports routing. This allows the device to communicate using other routing enabled devices as intermediate routers. This device is also able to participate in the routing of data between other devices in the mesh network.
|
||||
|
||||
## Overview
|
||||
|
||||
MCOHome A8-9 is a Z-Wave enabled multiple environmental monitoring sensors, with 3.5 inch TFT
|
||||
clear display and compliant to Z-Wave Plus standard. It is built in with **Temperature, Humidity,**
|
||||
**PM2.5, CO2, VOC, PIR, illumination, Noise, Smoke** sensors. Device can be added into any Z-Wave
|
||||
network, and is compatible with any other Z-Wave certified devices.
|
||||
|
||||
* Temperature: 0 °C ~ 50 °C
|
||||
* Humidity: 0% RH ~ 99% RH
|
||||
* PM2.5: 0 µg / m<sup>3 </sup>~ 500 µg / m<sup>3</sup>
|
||||
* CO<sub>2</sub>: 0 ppm ~ 5000 ppm
|
||||
* VOC: 0 ppb - 64000 ppb
|
||||
* Illumination: 0 Lux ~ 40000 Lux
|
||||
* Noise: 30 dB ~ 100 dB
|
||||
* PIR: 0 or 1 detection angle up to 120°
|
||||
* Smoke: 0 or 1
|
||||
|
||||
**Specification**
|
||||
|
||||
* Dimension: 110 \* 110 \* 32 mm
|
||||
* Self-dissipation: < 3 Watt
|
||||
* Hole Pitch: 60 mm or 82 mm
|
||||
* Work environment: -20 °C ~ + 60 °C < 99% RH (non-condensation)
|
||||
* Housing: Tempered glass + PC Alloy
|
||||
* Installation: Wall-mounted (vertical)
|
||||
|
||||
**Command Class supported by the device: (Supports S2 unauthenticated level)**
|
||||
|
||||
* COMMAND\_CLASS\_VERSION
|
||||
* COMMAND\_CLASS\_MANUFACTURER_SPECIFIC
|
||||
* COMMAND\_CLASS\_DEVICE\_RESET\_LOCALLY
|
||||
* COMMAND\_CLASS\_POWERLEVEL
|
||||
* COMMAND\_CLASS\_ASSOCIATION
|
||||
* COMMAND\_CLASS\_ASSOCIATION\_GRP\_INFO
|
||||
* COMMAND\_CLASS\_CONFIGURATION
|
||||
* COMMAND\_CLASS\_SENSOR_MULTILEVEL
|
||||
* COMMAND\_CLASS\_FIRMWARE\_UPDATE\_MD
|
||||
|
||||
**Command Class supported by the device: (Not supporting S2)**
|
||||
|
||||
* COMMAND\_CLASS\_ZWAVEPLUS_INFO
|
||||
* COMMAND\_CLASS\_TRANSPORT\_SERVICE\_V2
|
||||
* COMMAND\_CLASS\_SECURITY_2
|
||||
* COMMAND\_CLASS\_SUPERVISION
|
||||
|
||||
**Note: A Security Enabled Z-Wave Controller must be used in order to fully utilise the product**
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
**Add to Z-Wave network**
|
||||
|
||||
* Activate inclusion mode in the gateway. When device is powered on, hold F1 to select the interface for Z-Wave network inclusion.
|
||||
* Click F2 five times until _<refresh icon>_ turns blue.
|
||||
* Hold F2 and the device enters into learning mode, then _<network icon>_ turns blue and the device is added into Z-Wave network.
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
**Remove from Z-Wave network**
|
||||
|
||||
* Activate exclusion mode in the gateway. When device is powered on, hold F1 to select the interface for Z-Wave network exclusion.
|
||||
* Click F2 five times until _<refresh icon>_ turns blue.
|
||||
* Hold F2 and the device enters into learning mode, then _<network icon>_ turns blue and the device is added into Z-Wave network.
|
||||
|
||||
### General Usage Information
|
||||
|
||||
**Power On / Power Off**
|
||||
|
||||
Wire the adapter and the device is powered on. It will display all detected information by the sensors.
|
||||
|
||||
**Display Interface**
|
||||
|
||||
Hold Key F1 can switch among the following 4 display interfaces:
|
||||
|
||||
1. Data detecting: display all sensors’ data
|
||||
2. Network: Z-Wave Add/Remove
|
||||
3. Data calibration: to calibrate the detected data manually
|
||||
4. Local time setting
|
||||
|
||||
**Restore Factory Setting**
|
||||
|
||||
1. Press & hold F1 to enter Z-Wave setting interface, then press & hold F1 again to enter parameters
|
||||
setting interface;
|
||||
2. Press & hold F2 to enter setting interface and select “default”;
|
||||
3. Click F2 3 times and displays “OFF”-->“ON”-->“OK”-->“OFF”, factory setting is restored.
|
||||
|
||||
_Note: Please use this procedure only when the network primary controller is missing or otherwise inoperable._
|
||||
|
||||
**Data Calibration**
|
||||
|
||||
Hold F1 to choose interface for data calibration. Then hold F2 to switch among the sensors. Choose one and click F2, F1 to change the data. After finished, hold F1 can return data detecting interface.
|
||||
|
||||
**Local Time Setting**
|
||||
|
||||
Hold F1 to choose interface for local time setting. Then hold F2 to switch among “Hour-Minute-Second-Year-Month-Date”. Click F2, F1 can change the data of flashing item. After finished, hold F1 can return data detecting interface._
|
||||
_
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the A89 -:
|
||||
|
||||
| Channel Name | Channel ID | Channel Type | Category | Item Type |
|
||||
|--------------|------------|--------------|----------|-----------|
|
||||
| Volatile Organic Compound (VOC) Sensor | sensor_voc | sensor_voc | | |
|
||||
| Temperature Sensor | sensor_temperature | sensor_temperature | Temperature | Number:Temperature |
|
||||
| Loudness Sensor | sensor_loudness | sensor_loudness | | |
|
||||
| Carbon Dioxide (CO2) Sensor | sensor_co2 | sensor_co2 | CarbonDioxide | Number |
|
||||
| Smoke Alarm Sensor | alarm_smoke | alarm_smoke | Smoke | Switch |
|
||||
| Particulate Matter (PM2.5) Sensor | sensor_particulate | sensor_particulate | | Number |
|
||||
| PIR Motion Sensor | alarm_motion | alarm_motion | Motion | Switch |
|
||||
| Luminance Sensor | sensor_luminance | sensor_luminance | | Number |
|
||||
| Relative Humidity Sensor | sensor_relhumidity | sensor_relhumidity | Humidity | Number |
|
||||
|
||||
### Volatile Organic Compound (VOC) Sensor
|
||||
Channel type information on this channel is not found.
|
||||
|
||||
### Temperature Sensor
|
||||
Indicates the current temperature.
|
||||
|
||||
The ```sensor_temperature``` channel is of type ```sensor_temperature``` and supports the ```Number:Temperature``` item and is in the ```Temperature``` category.
|
||||
|
||||
### Loudness Sensor
|
||||
Channel type information on this channel is not found.
|
||||
|
||||
### Carbon Dioxide (CO2) Sensor
|
||||
Indicates the CO2 level.
|
||||
|
||||
The ```sensor_co2``` channel is of type ```sensor_co2``` and supports the ```Number``` item and is in the ```CarbonDioxide``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
### Smoke Alarm Sensor
|
||||
Indicates if a smoke is triggered.
|
||||
|
||||
The ```alarm_smoke``` channel is of type ```alarm_smoke``` and supports the ```Switch``` item and is in the ```Smoke``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
### Particulate Matter (PM2.5) Sensor
|
||||
Indicates the level of particulate matter.
|
||||
|
||||
The ```sensor_particulate``` channel is of type ```sensor_particulate``` and supports the ```Number``` item. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
### PIR Motion Sensor
|
||||
Indicates if a motion alarm is triggered.
|
||||
|
||||
The ```alarm_motion``` channel is of type ```alarm_motion``` and supports the ```Switch``` item and is in the ```Motion``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
### Luminance Sensor
|
||||
Indicates the current light reading.
|
||||
|
||||
The ```sensor_luminance``` channel is of type ```sensor_luminance``` and supports the ```Number``` item. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
### Relative Humidity Sensor
|
||||
Indicates the current relative humidity.
|
||||
|
||||
The ```sensor_relhumidity``` channel is of type ```sensor_relhumidity``` and supports the ```Number``` item and is in the ```Humidity``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
|
||||
|
||||
## Device Configuration
|
||||
|
||||
The following table provides a summary of the 27 configuration parameters available in the A89.
|
||||
Detailed information on each parameter can be found in the sections below.
|
||||
|
||||
| Param | Name | Description |
|
||||
|-------|-------|-------------|
|
||||
| 1 | PM25 Delta Level | =0 Turn off report | >=2 Report when change > n * 1 µg / m3 |
|
||||
| 2 | CO2 Delta Level | =0 Turn off report | >=2 Report when change > n * 5 ppm |
|
||||
| 3 | Temperature Delta Level | =0 Turn off report | >=1 Report when change > n * 0.5 °C |
|
||||
| 4 | Humidity Delta Level | =0 Turn off report | >=3 Report when change > n % |
|
||||
| 5 | VOC Delta Level | =0 Turn off report | >=1 Report when change > n * 5 ppb |
|
||||
| 6 | Lux Delta Level | =0 Turn off report | >=20 Report when change > n * 1 Lux |
|
||||
| 7 | dB Delta Level | =0 Turn off report | >=5 Report when change > n * 1 dB |
|
||||
| 8 | PIR Motion Sensor Reporting | =0 Turn off report | =1 Report change |
|
||||
| 9 | Smoke Sensor Reporting | =0 Turn off report | =1 Report change |
|
||||
| 10 | Smoke Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 11 | PIR Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 12 | PM2.5 Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 13 | CO2 Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 14 | Temperature Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 15 | Humidity Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 16 | VOC Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 17 | Lux Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 18 | dB Timer | =0 Turn off report | >=10 Report every interval n * 1 s |
|
||||
| 47 | Temperature Unit | =0 °C | =1 °F |
|
||||
| 50 | T_Offset | -10.0 °C ~ 10.0 °C |
|
||||
| 51 | RH_OffSet | -20% ~ 20% |
|
||||
| 52 | CO2_OffSet | -500 ~ 500 ppm |
|
||||
| 53 | PM2.5_OffSet | -100 ~ 100 ug/m3 |
|
||||
| 54 | Lux_OffSet | -5000 ~ 5000 lux |
|
||||
| 55 | VOC_Correct | -100 ~ 100 |
|
||||
| 56 | dB_Correct | -50 ~ 50 |
|
||||
| 255 | Restore | 0x55 (85) restore factory setting | 0xAA (170) restore default parameters |
|
||||
|
||||
### Parameter 1: PM25 Delta Level
|
||||
|
||||
=0 Turn off report | >=2 Report when change > n * 1 µg / m3
|
||||
|
||||
The following option values may be configured, in addition to values in the range 0 to 255 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 2 | Report when change > 2 µg / m3 |
|
||||
| 5 | Report when change > 5 µg / m3 |
|
||||
| 10 | Report when change > 10 µg / m3 |
|
||||
| 25 | Report when change > 25 µg / m3 |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_1_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 2: CO2 Delta Level
|
||||
|
||||
=0 Turn off report | >=2 Report when change > n * 5 ppm
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 2 | Report when change > 10 ppm |
|
||||
| 5 | Report when change > 25 ppm |
|
||||
| 10 | Report when change > 50 ppm |
|
||||
| 25 | Report when change > 125 ppm |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_2_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 3: Temperature Delta Level
|
||||
|
||||
=0 Turn off report | >=1 Report when change > n * 0.5 °C
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 1 | Report when change > 0.5 °C |
|
||||
| 2 | Report when change > 1 °C |
|
||||
| 5 | Report when change > 2.5 °C |
|
||||
| 10 | Report when change > 5 °C |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_3_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 4: Humidity Delta Level
|
||||
|
||||
=0 Turn off report | >=3 Report when change > n %
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 3 | Report when change > 3 % |
|
||||
| 5 | Report when change > 5 % |
|
||||
| 10 | Report when change > 10 % |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_4_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 5: VOC Delta Level
|
||||
|
||||
=0 Turn off report | >=1 Report when change > n * 5 ppb
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 1 | Report when change > 5 ppb |
|
||||
| 2 | Report when change > 10 ppb |
|
||||
| 5 | Report when change > 25 ppb |
|
||||
| 10 | Report when change > 50 ppb |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_5_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 6: Lux Delta Level
|
||||
|
||||
=0 Turn off report | >=20 Report when change > n * 1 Lux
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 20 | Report when change > 20 Lux |
|
||||
| 50 | Report when change > 50 Lux |
|
||||
| 100 | Report when change > 100 Lux |
|
||||
| 250 | Report when change > 250 Lux |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_6_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 7: dB Delta Level
|
||||
|
||||
=0 Turn off report | >=5 Report when change > n * 1 dB
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 5 | Report when change > 5 dB |
|
||||
| 10 | Report when change > 10 dB |
|
||||
| 25 | Report when change > 25 dB |
|
||||
| 50 | Report when change > 50 dB |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_7_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 8: PIR Motion Sensor Reporting
|
||||
|
||||
=0 Turn off report | =1 Report change
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 1 | Report change |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_8_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 9: Smoke Sensor Reporting
|
||||
|
||||
=0 Turn off report | =1 Report change
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 1 | Report change |
|
||||
|
||||
The manufacturer defined default value is ```1``` (Report change).
|
||||
|
||||
This parameter has the configuration ID ```config_9_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 10: Smoke Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_10_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 11: PIR Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_11_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 12: PM2.5 Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_12_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 13: CO2 Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_13_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 14: Temperature Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_14_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 15: Humidity Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_15_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 16: VOC Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_16_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 17: Lux Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_17_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 18: dB Timer
|
||||
|
||||
=0 Turn off report | >=10 Report every interval n * 1 s
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 10 | Report every interval n * 1 s |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_18_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 47: Temperature Unit
|
||||
|
||||
=0 °C | =1 °F
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Celcius |
|
||||
| 1 | Fahrenheit |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Celcius).
|
||||
|
||||
This parameter has the configuration ID ```config_47_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 50: T_Offset
|
||||
|
||||
-10.0 °C ~ 10.0 °C
|
||||
|
||||
Values in the range 0 to 200 may be set.
|
||||
|
||||
The manufacturer defined default value is ```100```.
|
||||
|
||||
This parameter has the configuration ID ```config_50_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 51: RH_OffSet
|
||||
|
||||
-20% ~ 20%
|
||||
|
||||
Values in the range 0 to 40 may be set.
|
||||
|
||||
The manufacturer defined default value is ```20```.
|
||||
|
||||
This parameter has the configuration ID ```config_51_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 52: CO2_OffSet
|
||||
|
||||
-500 ~ 500 ppm
|
||||
|
||||
Values in the range 0 to 1000 may be set.
|
||||
|
||||
The manufacturer defined default value is ```500```.
|
||||
|
||||
This parameter has the configuration ID ```config_52_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 53: PM2.5_OffSet
|
||||
|
||||
-100 ~ 100 ug/m3
|
||||
|
||||
Values in the range 0 to 200 may be set.
|
||||
|
||||
The manufacturer defined default value is ```100```.
|
||||
|
||||
This parameter has the configuration ID ```config_53_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 54: Lux_OffSet
|
||||
|
||||
-5000 ~ 5000 lux
|
||||
|
||||
Values in the range 0 to 10000 may be set.
|
||||
|
||||
The manufacturer defined default value is ```5000```.
|
||||
|
||||
This parameter has the configuration ID ```config_54_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 55: VOC_Correct
|
||||
|
||||
-100 ~ 100
|
||||
|
||||
Values in the range 0 to 200 may be set.
|
||||
|
||||
The manufacturer defined default value is ```100```.
|
||||
|
||||
This parameter has the configuration ID ```config_55_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 56: dB_Correct
|
||||
|
||||
-50 ~ 50
|
||||
|
||||
Values in the range 0 to 100 may be set.
|
||||
|
||||
The manufacturer defined default value is ```50```.
|
||||
|
||||
This parameter has the configuration ID ```config_56_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 255: Restore
|
||||
|
||||
0x55 (85) restore factory setting | 0xAA (170) restore default parameters
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 85 | Restore factory settings |
|
||||
| 170 | Restore default parameters |
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_255_1_wo``` and is of type ```INTEGER```.
|
||||
This is a write only parameter.
|
||||
|
||||
|
||||
## Association Groups
|
||||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
||||
The A89 supports 1 association group.
|
||||
|
||||
### Group 1: Lifeline
|
||||
|
||||
The Lifeline association group reports device status to a hub and is not designed to control other devices directly. When using the Lineline group with a hub, in most cases, only the lifeline group will need to be configured and normally the hub will perform this automatically during the device initialisation.
|
||||
|
||||
Association group 1 supports 1 node.
|
||||
|
||||
## Technical Information
|
||||
|
||||
### Endpoints
|
||||
|
||||
#### Endpoint 0
|
||||
|
||||
| Command Class | Comment |
|
||||
|---------------|---------|
|
||||
| COMMAND_CLASS_NO_OPERATION_V1| |
|
||||
| COMMAND_CLASS_BASIC_V1| |
|
||||
| COMMAND_CLASS_SENSOR_MULTILEVEL_V10| Linked to BASIC|
|
||||
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
|
||||
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
|
||||
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
|
||||
| COMMAND_CLASS_CONFIGURATION_V1| |
|
||||
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
|
||||
| COMMAND_CLASS_POWERLEVEL_V1| |
|
||||
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
|
||||
| COMMAND_CLASS_ASSOCIATION_V1| |
|
||||
| COMMAND_CLASS_VERSION_V2| |
|
||||
| COMMAND_CLASS_ENERGY_PRODUCTION_V1| |
|
||||
| COMMAND_CLASS_SECURITY_V1| |
|
||||
|
||||
### Documentation Links
|
||||
|
||||
* [MCO Home A8-9 manual](https://www.cd-jackson.com/zwave_device_uploads/1232/mcoa89.pdf)
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can [contribute to the database here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/1232).
|
|
@ -18,31 +18,30 @@ The A8-9 supports routing. This allows the device to communicate using other rou
|
|||
## Overview
|
||||
|
||||
MCOHome A8-9 is a Z-Wave enabled multiple environmental monitoring sensors, with 3.5 inch TFT
|
||||
clear display and compliant to Z-Wave Plus standard. It is built in with Temperature, Humidity,
|
||||
PM2.5, CO2, VOC, PIR, illumination, Noise, Smoke sensors. Device can be added into any Z-Wave
|
||||
clear display and compliant to Z-Wave Plus standard. It is built in with **Temperature, Humidity,**
|
||||
**PM2.5, CO2, VOC, PIR, illumination, Noise, Smoke** sensors. Device can be added into any Z-Wave
|
||||
network, and is compatible with any other Z-Wave certified devices.
|
||||
|
||||
* Temperature: 0~50°C
|
||||
* Humidity: 0%RH~99%RH
|
||||
* PM2.5: 0~500ug/m3
|
||||
* CO2: 0~5000ppm
|
||||
* VOC: 0-64000ppb
|
||||
* PIR: 0 or 1 Detection angle up to 120°
|
||||
* Illumination: 0~40000Lux
|
||||
* Noise: 30dB~100dB
|
||||
* Temperature: 0 °C ~ 50 °C
|
||||
* Humidity: 0% RH ~ 99% RH
|
||||
* PM2.5: 0 µg / m<sup>3 </sup>~ 500 µg / m<sup>3</sup>
|
||||
* CO<sub>2</sub>: 0 ppm ~ 5000 ppm
|
||||
* VOC: 0 ppb - 64000 ppb
|
||||
* Illumination: 0 Lux ~ 40000 Lux
|
||||
* Noise: 30 dB ~ 100 dB
|
||||
* PIR: 0 or 1 detection angle up to 120°
|
||||
* Smoke: 0 or 1
|
||||
|
||||
**Specification**
|
||||
|
||||
* Power Supply: DC12V
|
||||
* Dimension: 110\* 110\*32mm
|
||||
* Self-dissipation:<3W
|
||||
* Hole Pitch: 60mm or 82mm
|
||||
* Work environment:-20~+60°C <99%RH
|
||||
* Housing: Tempered glass+ PC Alloy (Non-condensation)
|
||||
* Installation: Wall-mounted (Vertical)
|
||||
* Dimension: 110 \* 110 \* 32 mm
|
||||
* Self-dissipation: < 3 Watt
|
||||
* Hole Pitch: 60 mm or 82 mm
|
||||
* Work environment: -20 °C ~ + 60 °C < 99% RH (non-condensation)
|
||||
* Housing: Tempered glass + PC Alloy
|
||||
* Installation: Wall-mounted (vertical)
|
||||
|
||||
**Command Class supported by the device: ( Supports S2 unauthenticated level)**
|
||||
**Command Class supported by the device: (Supports S2 unauthenticated level)**
|
||||
|
||||
* COMMAND\_CLASS\_VERSION
|
||||
* COMMAND\_CLASS\_MANUFACTURER_SPECIFIC
|
||||
|
@ -54,32 +53,62 @@ network, and is compatible with any other Z-Wave certified devices.
|
|||
* COMMAND\_CLASS\_SENSOR_MULTILEVEL
|
||||
* COMMAND\_CLASS\_FIRMWARE\_UPDATE\_MD
|
||||
|
||||
**Command Class supported by the device: (Not supports S2)**
|
||||
**Command Class supported by the device: (Not supporting S2)**
|
||||
|
||||
* COMMAND\_CLASS\_ZWAVEPLUS_INFO
|
||||
* COMMAND\_CLASS\_TRANSPORT\_SERVICE\_V2
|
||||
* COMMAND\_CLASS\_SECURITY_2
|
||||
* COMMAND\_CLASS\_SUPERVISION
|
||||
|
||||
**Note: A Security Enabled Z-Wave Controller must be used in order to fully utilise the product**
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
**Note: A Security Enabled Z-Wave Controller must be used in order to fully utilize the product**
|
||||
**Add to Z-Wave network**
|
||||
|
||||
**Add &Remove Z-Wave network**
|
||||
|
||||
* Activate Add/Remove mode in the gateway. When device is powered on, hold F1 to choose interface for Add or Remove Z-Wave network.
|
||||
* Click F2 five times until _<Refresh icon>_ turns blue.
|
||||
* Hold F2 and the device enters into learning mode, then _<Network icon>_ turns blue and the device is added into Z-Wave network.
|
||||
* Follow the same steps to remove the device from network.
|
||||
* Activate inclusion mode in the gateway. When device is powered on, hold F1 to select the interface for Z-Wave network inclusion.
|
||||
* Click F2 five times until _<refresh icon>_ turns blue.
|
||||
* Hold F2 and the device enters into learning mode, then _<network icon>_ turns blue and the device is added into Z-Wave network.
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
**Add &Remove Z-Wave network**
|
||||
**Remove from Z-Wave network**
|
||||
|
||||
* Activate Add/Remove mode in the gateway. When device is powered on, hold F1 to choose interface for Add or Remove Z-Wave network.
|
||||
* Click F2 five times until _<Refresh icon>_ turns blue.
|
||||
* Hold F2 and the device enters into learning mode, then _<Network icon>_ turns blue and the device is added into Z-Wave network.
|
||||
* Follow the same steps to remove the device from network.
|
||||
* Activate exclusion mode in the gateway. When device is powered on, hold F1 to select the interface for Z-Wave network exclusion.
|
||||
* Click F2 five times until _<refresh icon>_ turns blue.
|
||||
* Hold F2 and the device enters into learning mode, then _<network icon>_ turns blue and the device is added into Z-Wave network.
|
||||
|
||||
### General Usage Information
|
||||
|
||||
**Power On / Power Off**
|
||||
|
||||
Wire the adapter and the device is powered on. It will display all detected information by the sensors.
|
||||
|
||||
**Display Interface**
|
||||
|
||||
Hold Key F1 can switch among the following 4 display interfaces:
|
||||
|
||||
1. Data detecting: display all sensors’ data
|
||||
2. Network: Z-Wave Add/Remove
|
||||
3. Data calibration: to calibrate the detected data manually
|
||||
4. Local time setting
|
||||
|
||||
**Restore Factory Setting**
|
||||
|
||||
1. Press & hold F1 to enter Z-Wave setting interface, then press & hold F1 again to enter parameters
|
||||
setting interface;
|
||||
2. Press & hold F2 to enter setting interface and select “default”;
|
||||
3. Click F2 3 times and displays “OFF”-->“ON”-->“OK”-->“OFF”, factory setting is restored.
|
||||
|
||||
_Note: Please use this procedure only when the network primary controller is missing or otherwise inoperable._
|
||||
|
||||
**Data Calibration**
|
||||
|
||||
Hold F1 to choose interface for data calibration. Then hold F2 to switch among the sensors. Choose one and click F2, F1 to change the data. After finished, hold F1 can return data detecting interface.
|
||||
|
||||
**Local Time Setting**
|
||||
|
||||
Hold F1 to choose interface for local time setting. Then hold F2 to switch among “Hour-Minute-Second-Year-Month-Date”. Click F2, F1 can change the data of flashing item. After finished, hold F1 can return data detecting interface.
|
||||
|
||||
## Channels
|
||||
|
||||
|
@ -87,74 +116,111 @@ The following table summarises the channels available for the A8-9 -:
|
|||
|
||||
| Channel Name | Channel ID | Channel Type | Category | Item Type |
|
||||
|--------------|------------|--------------|----------|-----------|
|
||||
| Sensor (smoke) | sensor_smoke | sensor_smoke | | |
|
||||
| Sensor (relative humidity) | sensor_relhumidity | sensor_relhumidity | Humidity | Number |
|
||||
| Sensor (luminance) | sensor_luminance | sensor_luminance | | Number |
|
||||
| Sensor (temperature) | sensor_temperature | sensor_temperature | Temperature | Number:Temperature |
|
||||
| Sensor (CO2) | sensor_co2 | sensor_co2 | CarbonDioxide | Number |
|
||||
| Smoke Alarm Sensor | alarm_smoke | alarm_smoke | Smoke | Switch |
|
||||
| Relative Humidity Sensor | sensor_relhumidity | sensor_relhumidity | Humidity | Number |
|
||||
| Luminance Sensor | sensor_luminance | sensor_luminance | | Number |
|
||||
| Temperature Sensor | sensor_temperature | sensor_temperature | Temperature | Number:Temperature |
|
||||
| Carbon Dioxide (CO2) Sensor | sensor_co2 | sensor_co2 | CarbonDioxide | Number |
|
||||
| Volatile Organic Compound (VOC) Sensor | sensor_voc | sensor_voc | | |
|
||||
| Loudness Sensor | sensor_loudness | sensor_loudness | | |
|
||||
| Particulate Matter (PM2.5) Sensor | sensor_particulate | sensor_particulate | | Number |
|
||||
| PIR Motion Sensor | alarm_motion | alarm_motion | Motion | Switch |
|
||||
|
||||
### Sensor (smoke)
|
||||
Channel type information on this channel is not found.
|
||||
### Smoke Alarm Sensor
|
||||
Indicates if a smoke is triggered.
|
||||
|
||||
### Sensor (relative humidity)
|
||||
The ```alarm_smoke``` channel is of type ```alarm_smoke``` and supports the ```Switch``` item and is in the ```Smoke``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
### Relative Humidity Sensor
|
||||
Indicates the current relative humidity.
|
||||
|
||||
The ```sensor_relhumidity``` channel is of type ```sensor_relhumidity``` and supports the ```Number``` item and is in the ```Humidity``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
### Sensor (luminance)
|
||||
### Luminance Sensor
|
||||
Indicates the current light reading.
|
||||
|
||||
The ```sensor_luminance``` channel is of type ```sensor_luminance``` and supports the ```Number``` item. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
### Sensor (temperature)
|
||||
### Temperature Sensor
|
||||
Indicates the current temperature.
|
||||
|
||||
The ```sensor_temperature``` channel is of type ```sensor_temperature``` and supports the ```Number:Temperature``` item and is in the ```Temperature``` category.
|
||||
|
||||
### Sensor (CO2)
|
||||
### Carbon Dioxide (CO2) Sensor
|
||||
Indicates the CO2 level.
|
||||
|
||||
The ```sensor_co2``` channel is of type ```sensor_co2``` and supports the ```Number``` item and is in the ```CarbonDioxide``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
### Volatile Organic Compound (VOC) Sensor
|
||||
Channel type information on this channel is not found.
|
||||
|
||||
### Loudness Sensor
|
||||
Channel type information on this channel is not found.
|
||||
|
||||
### Particulate Matter (PM2.5) Sensor
|
||||
Indicates the level of particulate matter.
|
||||
|
||||
The ```sensor_particulate``` channel is of type ```sensor_particulate``` and supports the ```Number``` item. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
### PIR Motion Sensor
|
||||
Indicates if a motion alarm is triggered.
|
||||
|
||||
The ```alarm_motion``` channel is of type ```alarm_motion``` and supports the ```Switch``` item and is in the ```Motion``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
|
||||
|
||||
## Device Configuration
|
||||
|
||||
The following table provides a summary of the 26 configuration parameters available in the A8-9.
|
||||
The following table provides a summary of the 27 configuration parameters available in the A8-9.
|
||||
Detailed information on each parameter can be found in the sections below.
|
||||
|
||||
| Param | Name | Description |
|
||||
|-------|-------|-------------|
|
||||
| 1 | PM25 Delta Level | PM25 Delta Level |
|
||||
| 2 | CO2 Delta Level | =0 Turn off report | >=1 Report when change > n * 5ppm |
|
||||
| 3 | Temperature Delta Level | =0 Turn off report | >=1 Report when change > n*0.5°C |
|
||||
| 4 | Humidity Delta Level | =0 Turn off report | >=1 Report when change >n% |
|
||||
| 5 | VOC Delta Level | =0 Turn off report | >=1-127*5ppb Reportchange |
|
||||
| 6 | Lux Delta Level | =0 Turn off report | >=1 Report when change > n*1 Lux |
|
||||
| 7 | dB Delta Level | =0 Turn off report | >=1 Report when change > n*1dB |
|
||||
| 8 | PIR Delta Level | =0 Turn off report | =1 Report change |
|
||||
| 9 | Smoke Delta Level | =0 Turn off report | =1 Report change |
|
||||
| 10 | Smoke Timer | =0 Turn off report | >=35 Report every interval n*1s |
|
||||
| 11 | PIR Timer | =0 Turn off report | >=35 Report every interval n*1s |
|
||||
| 12 | PM2.5 Timer | =0 Turn off report >=35Report every interval n * 1s |
|
||||
| 13 | CO2 Timer | =0 Turn off report |
|
||||
| 14 | Temperature Timer | =0 Turn off report | >=35 Report every interval |
|
||||
| 15 | Humidity Timer | =0 Turn off report | >=35 Report every interval |
|
||||
| 16 | VOC Timer | =0 Turn off report | >=35 Report every interval |
|
||||
| 17 | Lux Timer | =0 Turn off report | >=35 Report every interval |
|
||||
| 18 | dB Timer | =0 Turn off report | >=35 Report every interval |
|
||||
| 47 | Temperature Unit | =0 °C | =1 °F |
|
||||
| 50 | T_Offset | |
|
||||
| 51 | RH_OffSet | |
|
||||
| 52 | CO2_OffSet | |
|
||||
| 53 | PM2.5_OffSet | |
|
||||
| 54 | Lux_OffSet | |
|
||||
| 55 | VOC_Correct | |
|
||||
| 56 | dB_Correct | |
|
||||
| 1 | PM25 Delta Level | =0 Turn off report | >=2 Report when change > n * 1 µg / m3 |
|
||||
| 2 | CO2 Delta Level | =0 Turn off report | >=1 Report when change > n * 5 ppm |
|
||||
| 3 | Temperature Delta Level | =0 Turn off report | >=1 Report when change > n * 0.5 °C |
|
||||
| 4 | Humidity Delta Level | =0 Turn off report | >=1 Report when change > n % |
|
||||
| 5 | VOC Delta Level | =0 Turn off report | >=1 Report when change > n * 5 ppb |
|
||||
| 6 | Lux Delta Level | =0 Turn off report | >=1 Report when change > n * 1 Lux |
|
||||
| 7 | dB Delta Level | =0 Turn off report | >=1 Report when change > n * 1 dB |
|
||||
| 8 | PIR Motion Sensor Reporting | =0 Turn off report | =1 Report change |
|
||||
| 9 | Smoke Sensor Reporting | =0 Turn off report | =1 Report change |
|
||||
| 10 | Smoke Timer | =0 Turn off report | >=35 Report every interval n * 1 s |
|
||||
| 11 | PIR Timer | =0 Turn off report | >=35 Report every interval n * 1 s |
|
||||
| 12 | PM2.5 Timer | =0 Turn off report >=35 Report every interval n * 1 s |
|
||||
| 13 | CO2 Timer | =0 Turn off report >=35 Report every interval n * 1 s |
|
||||
| 14 | Temperature Timer | =0 Turn off report >=35 Report every interval n * 1 s |
|
||||
| 15 | Humidity Timer | =0 Turn off report >=35 Report every interval n * 1 s |
|
||||
| 16 | VOC Timer | =0 Turn off report >=35 Report every interval n * 1 s |
|
||||
| 17 | Lux Timer | =0 Turn off report >=35 Report every interval n * 1 s |
|
||||
| 18 | dB Timer | =0 Turn off report >=35 Report every interval n * 1 s |
|
||||
| 47 | Temperature Unit | Select Celsius or Fahrenheit |
|
||||
| 50 | T_Offset | -10.0 °C ~ 10.0 °C |
|
||||
| 51 | RH_OffSet | -20% ~ 20% |
|
||||
| 52 | CO2_OffSet | -500 ~ 500 ppm |
|
||||
| 53 | PM2.5_OffSet | -100 ~ 100 µg/m3 |
|
||||
| 54 | Lux_OffSet | -5000 ~ 5000 lux |
|
||||
| 55 | VOC_Correct | -100 ~ 100 |
|
||||
| 56 | dB_Correct | -50 ~ 50 |
|
||||
| 255 | Restore | Restore factory settings (0x55/85) or default parameters (0xAA/170) |
|
||||
|
||||
### Parameter 1: PM25 Delta Level
|
||||
|
||||
PM25 Delta Level
|
||||
=0 Turn off report | >=2 Report when change > n * 1 µg / m3
|
||||
|
||||
Values in the range 0 to 127 may be set.
|
||||
|
||||
|
@ -165,7 +231,7 @@ This parameter has the configuration ID ```config_1_1``` and is of type ```INTEG
|
|||
|
||||
### Parameter 2: CO2 Delta Level
|
||||
|
||||
=0 Turn off report | >=1 Report when change > n * 5ppm
|
||||
=0 Turn off report | >=1 Report when change > n * 5 ppm
|
||||
|
||||
Values in the range 0 to 127 may be set.
|
||||
|
||||
|
@ -176,7 +242,7 @@ This parameter has the configuration ID ```config_2_1``` and is of type ```INTEG
|
|||
|
||||
### Parameter 3: Temperature Delta Level
|
||||
|
||||
=0 Turn off report | >=1 Report when change > n*0.5°C
|
||||
=0 Turn off report | >=1 Report when change > n * 0.5 °C
|
||||
|
||||
Values in the range 0 to 127 may be set.
|
||||
|
||||
|
@ -187,7 +253,7 @@ This parameter has the configuration ID ```config_3_1``` and is of type ```INTEG
|
|||
|
||||
### Parameter 4: Humidity Delta Level
|
||||
|
||||
=0 Turn off report | >=1 Report when change >n%
|
||||
=0 Turn off report | >=1 Report when change > n %
|
||||
|
||||
Values in the range 0 to 127 may be set.
|
||||
|
||||
|
@ -198,7 +264,7 @@ This parameter has the configuration ID ```config_4_1``` and is of type ```INTEG
|
|||
|
||||
### Parameter 5: VOC Delta Level
|
||||
|
||||
=0 Turn off report | >=1-127*5ppb Reportchange
|
||||
=0 Turn off report | >=1 Report when change > n * 5 ppb
|
||||
|
||||
Values in the range 0 to 127 may be set.
|
||||
|
||||
|
@ -209,7 +275,7 @@ This parameter has the configuration ID ```config_5_1``` and is of type ```INTEG
|
|||
|
||||
### Parameter 6: Lux Delta Level
|
||||
|
||||
=0 Turn off report | >=1 Report when change > n*1 Lux
|
||||
=0 Turn off report | >=1 Report when change > n * 1 Lux
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
|
@ -220,7 +286,7 @@ This parameter has the configuration ID ```config_6_2``` and is of type ```INTEG
|
|||
|
||||
### Parameter 7: dB Delta Level
|
||||
|
||||
=0 Turn off report | >=1 Report when change > n*1dB
|
||||
=0 Turn off report | >=1 Report when change > n * 1 dB
|
||||
|
||||
Values in the range 0 to 127 may be set.
|
||||
|
||||
|
@ -229,141 +295,156 @@ The manufacturer defined default value is ```0```.
|
|||
This parameter has the configuration ID ```config_7_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 8: PIR Delta Level
|
||||
### Parameter 8: PIR Motion Sensor Reporting
|
||||
|
||||
=0 Turn off report | =1 Report change
|
||||
|
||||
Values in the range 0 to 1 may be set.
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 1 | Report change |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Turn off report).
|
||||
|
||||
This parameter has the configuration ID ```config_8_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 9: Smoke Delta Level
|
||||
### Parameter 9: Smoke Sensor Reporting
|
||||
|
||||
=0 Turn off report | =1 Report change
|
||||
|
||||
Values in the range 0 to 1 may be set.
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
The manufacturer defined default value is ```1```.
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Turn off report |
|
||||
| 1 | Report change |
|
||||
|
||||
The manufacturer defined default value is ```1``` (Report change).
|
||||
|
||||
This parameter has the configuration ID ```config_9_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 10: Smoke Timer
|
||||
|
||||
=0 Turn off report | >=35 Report every interval n*1s
|
||||
=0 Turn off report | >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```60```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_10_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 11: PIR Timer
|
||||
|
||||
=0 Turn off report | >=35 Report every interval n*1s
|
||||
=0 Turn off report | >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```60```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_11_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 12: PM2.5 Timer
|
||||
|
||||
=0 Turn off report >=35Report every interval n * 1s
|
||||
=0 Turn off report >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```120```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_12_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 13: CO2 Timer
|
||||
|
||||
=0 Turn off report
|
||||
=0 Turn off report >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```120```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_13_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 14: Temperature Timer
|
||||
|
||||
=0 Turn off report | >=35 Report every interval
|
||||
=0 Turn off report >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```180```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_14_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 15: Humidity Timer
|
||||
|
||||
=0 Turn off report | >=35 Report every interval
|
||||
=0 Turn off report >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```180```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_15_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 16: VOC Timer
|
||||
|
||||
=0 Turn off report | >=35 Report every interval
|
||||
=0 Turn off report >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```180```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_16_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 17: Lux Timer
|
||||
|
||||
=0 Turn off report | >=35 Report every interval
|
||||
=0 Turn off report >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```180```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_17_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 18: dB Timer
|
||||
|
||||
=0 Turn off report | >=35 Report every interval
|
||||
=0 Turn off report >=35 Report every interval n * 1 s
|
||||
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```180```.
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_18_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 47: Temperature Unit
|
||||
|
||||
=0 °C | =1 °F
|
||||
Select Celsius or Fahrenheit
|
||||
|
||||
Values in the range 0 to 1 may be set.
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | °C |
|
||||
| 1 | °F |
|
||||
|
||||
The manufacturer defined default value is ```0``` (°C).
|
||||
|
||||
This parameter has the configuration ID ```config_47_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 50: T_Offset
|
||||
|
||||
|
||||
-10.0 °C ~ 10.0 °C
|
||||
|
||||
Values in the range -128 to 127 may be set.
|
||||
|
||||
|
@ -374,7 +455,7 @@ This parameter has the configuration ID ```config_50_1``` and is of type ```INTE
|
|||
|
||||
### Parameter 51: RH_OffSet
|
||||
|
||||
|
||||
-20% ~ 20%
|
||||
|
||||
Values in the range 0 to 40 may be set.
|
||||
|
||||
|
@ -385,7 +466,7 @@ This parameter has the configuration ID ```config_51_1``` and is of type ```INTE
|
|||
|
||||
### Parameter 52: CO2_OffSet
|
||||
|
||||
|
||||
-500 ~ 500 ppm
|
||||
|
||||
Values in the range 0 to 1000 may be set.
|
||||
|
||||
|
@ -396,7 +477,7 @@ This parameter has the configuration ID ```config_52_2``` and is of type ```INTE
|
|||
|
||||
### Parameter 53: PM2.5_OffSet
|
||||
|
||||
|
||||
-100 ~ 100 µg/m3
|
||||
|
||||
Values in the range -128 to 127 may be set.
|
||||
|
||||
|
@ -407,7 +488,7 @@ This parameter has the configuration ID ```config_53_1``` and is of type ```INTE
|
|||
|
||||
### Parameter 54: Lux_OffSet
|
||||
|
||||
|
||||
-5000 ~ 5000 lux
|
||||
|
||||
Values in the range 0 to 10000 may be set.
|
||||
|
||||
|
@ -418,7 +499,7 @@ This parameter has the configuration ID ```config_54_2``` and is of type ```INTE
|
|||
|
||||
### Parameter 55: VOC_Correct
|
||||
|
||||
|
||||
-100 ~ 100
|
||||
|
||||
Values in the range -128 to 127 may be set.
|
||||
|
||||
|
@ -429,7 +510,7 @@ This parameter has the configuration ID ```config_55_1``` and is of type ```INTE
|
|||
|
||||
### Parameter 56: dB_Correct
|
||||
|
||||
|
||||
-50 ~ 50
|
||||
|
||||
Values in the range 0 to 100 may be set.
|
||||
|
||||
|
@ -438,6 +519,23 @@ The manufacturer defined default value is ```50```.
|
|||
This parameter has the configuration ID ```config_56_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 255: Restore
|
||||
|
||||
Restore factory settings (0x55/85) or default parameters (0xAA/170)
|
||||
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 85 | Restore factory settings |
|
||||
| 170 | Restore default parameters |
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_255_1_wo``` and is of type ```INTEGER```.
|
||||
This is a write only parameter.
|
||||
|
||||
|
||||
## Association Groups
|
||||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
@ -460,7 +558,7 @@ Association group 1 supports 1 node.
|
|||
|---------------|---------|
|
||||
| COMMAND_CLASS_NO_OPERATION_V1| |
|
||||
| COMMAND_CLASS_BASIC_V1| |
|
||||
| COMMAND_CLASS_SENSOR_MULTILEVEL_V10| |
|
||||
| COMMAND_CLASS_SENSOR_MULTILEVEL_V10| Linked to BASIC|
|
||||
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
|
||||
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
|
||||
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
|
||||
|
@ -470,6 +568,12 @@ Association group 1 supports 1 node.
|
|||
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
|
||||
| COMMAND_CLASS_ASSOCIATION_V2| |
|
||||
| COMMAND_CLASS_VERSION_V2| |
|
||||
| COMMAND_CLASS_ENERGY_PRODUCTION_V1| |
|
||||
| COMMAND_CLASS_SECURITY_V1| |
|
||||
#### Endpoint 0
|
||||
|
||||
| Command Class | Comment |
|
||||
|---------------|---------|
|
||||
|
||||
### Documentation Links
|
||||
|
||||
|
|
|
@ -0,0 +1,174 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: MS11Z - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# MS11Z Smart Dimmer Switch
|
||||
This describes the Z-Wave device *MS11Z*, manufactured by *NIE Technology* with the thing type UID of ```nietech_ms11z_04_000```.
|
||||
This version of the device is limited to firmware version 4.0
|
||||
|
||||
The device is in the category of *Wall Switch*, defining Any device attached to the wall that controls a binary status of something, for ex. a light switch.
|
||||
|
||||

|
||||
|
||||
|
||||
The MS11Z supports routing. This allows the device to communicate using other routing enabled devices as intermediate routers. This device is also able to participate in the routing of data between other devices in the mesh network.
|
||||
|
||||
## Overview
|
||||
|
||||
This product can be operated in any Z-Wave network with other Z-Wave certified devices from other manufacturers. All non-battery operated nodes within the network will act as repeaters regardless of vendor to increase reliability of the network.Each module is designed to act as a repeater,which will re-transmit a radio frequency (RF) signal by routing the signal ,around obstacles and radio dead spots to ensure that the signal is received at its intended destination.
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
ADD the MS13Z from the existing Z-Wave home control network with your primary controller.
|
||||
|
||||
\---Refer to your primary controller instructions to process the inclusion / exclusion setup procedure.
|
||||
|
||||
\---When prompted by your primary controller, click the Up or Down button three times in one second.
|
||||
|
||||
Include MS13Z to/from a Z-Wave Gateway with supporting Security.The MS13Z can support the Primary Controller that implemented the security S2.
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
Remove the MS13Z from the existing Z-Wave home control network with your primary controller.
|
||||
|
||||
\---Refer to your primary controller instructions to process the inclusion / exclusion setup procedure.
|
||||
|
||||
\---When prompted by your primary controller, click the Up or Down button three times in one second.
|
||||
|
||||
Include MS13Z to/from a Z-Wave Gateway with supporting Security.The MS13Z can support the Primary Controller that implemented the security S2.
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the MS11Z -:
|
||||
|
||||
| Channel Name | Channel ID | Channel Type | Category | Item Type |
|
||||
|--------------|------------|--------------|----------|-----------|
|
||||
| Dimmer | switch_dimmer | switch_dimmer | DimmableLight | Dimmer |
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
|
||||
### Dimmer
|
||||
The brightness channel allows to control the brightness of a light.
|
||||
It is also possible to switch the light on and off.
|
||||
|
||||
The ```switch_dimmer``` channel is of type ```switch_dimmer``` and supports the ```Dimmer``` item and is in the ```DimmableLight``` category.
|
||||
|
||||
### Scene Number
|
||||
Triggers when a scene button is pressed.
|
||||
|
||||
The ```scene_number``` channel is of type ```scene_number``` and supports the ```Number``` item.
|
||||
This channel provides the scene, and the event as a decimal value in the form ```<scene>.<event>```. The scene number is set by the device, and the event is as follows -:
|
||||
|
||||
| Event ID | Event Description |
|
||||
|----------|--------------------|
|
||||
| 0 | Single key press |
|
||||
| 1 | Key released |
|
||||
| 2 | Key held down |
|
||||
| 3 | Double keypress |
|
||||
| 4 | Tripple keypress |
|
||||
| 5 | 4 x keypress |
|
||||
| 6 | 5 x keypress |
|
||||
|
||||
|
||||
|
||||
## Device Configuration
|
||||
|
||||
The following table provides a summary of the 4 configuration parameters available in the MS11Z.
|
||||
Detailed information on each parameter can be found in the sections below.
|
||||
|
||||
| Param | Name | Description |
|
||||
|-------|-------|-------------|
|
||||
| 1 | Locally button function | Locally button function |
|
||||
| 2 | LED indicator | LED indicator |
|
||||
| 4 | Auto turn off timer | Auto turn off timer |
|
||||
| 6 | Restore state after power failure | Restore state after power failure |
|
||||
|
||||
### Parameter 1: Locally button function
|
||||
|
||||
Locally button function
|
||||
|
||||
Values in the range 0 to 1 may be set.
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_1_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 2: LED indicator
|
||||
|
||||
LED indicator
|
||||
|
||||
Values in the range 0 to 3 may be set.
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_2_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 4: Auto turn off timer
|
||||
|
||||
Auto turn off timer
|
||||
|
||||
Values in the range 0 to 65535 may be set.
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_4_4``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 6: Restore state after power failure
|
||||
|
||||
Restore state after power failure
|
||||
|
||||
Values in the range 0 to 2 may be set.
|
||||
|
||||
The manufacturer defined default value is ```2```.
|
||||
|
||||
This parameter has the configuration ID ```config_6_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
## Association Groups
|
||||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
||||
The MS11Z supports 1 association group.
|
||||
|
||||
### Group 1: Lifeline
|
||||
|
||||
The Lifeline association group reports device status to a hub and is not designed to control other devices directly. When using the Lineline group with a hub, in most cases, only the lifeline group will need to be configured and normally the hub will perform this automatically during the device initialisation.
|
||||
|
||||
Association group 1 supports 5 nodes.
|
||||
|
||||
## Technical Information
|
||||
|
||||
### Endpoints
|
||||
|
||||
#### Endpoint 0
|
||||
|
||||
| Command Class | Comment |
|
||||
|---------------|---------|
|
||||
| COMMAND_CLASS_NO_OPERATION_V1| |
|
||||
| COMMAND_CLASS_BASIC_V1| |
|
||||
| COMMAND_CLASS_SWITCH_MULTILEVEL_V3| |
|
||||
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
|
||||
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
|
||||
| COMMAND_CLASS_CENTRAL_SCENE_V3| |
|
||||
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
|
||||
| COMMAND_CLASS_CONFIGURATION_V1| |
|
||||
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
|
||||
| COMMAND_CLASS_POWERLEVEL_V1| |
|
||||
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
|
||||
| COMMAND_CLASS_ASSOCIATION_V2| |
|
||||
| COMMAND_CLASS_VERSION_V2| |
|
||||
| COMMAND_CLASS_MULTI_CHANNEL_ASSOCIATION_V3| |
|
||||
|
||||
### Documentation Links
|
||||
|
||||
* [Manual](https://www.cd-jackson.com/zwave_device_uploads/1231/ZW-31manual.pdf)
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can [contribute to the database here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/1231).
|
|
@ -41,7 +41,6 @@ The following table summarises the channels available for the PAN06 -:
|
|||
| Switch | switch_binary | switch_binary | Switch | Switch |
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
| Alarm | alarm_general | alarm_general | Alarm | Switch |
|
||||
| Battery Level | battery-level | system.battery_level | Battery | Number |
|
||||
| Switch 1 | switch_binary1 | switch_binary | Switch | Switch |
|
||||
| Switch 2 | switch_binary2 | switch_binary | Switch | Switch |
|
||||
| Switch 3 | switch_binary3 | switch_binary | Switch | Switch |
|
||||
|
@ -68,11 +67,6 @@ The following state translation is provided for this channel to the ```Switch```
|
|||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
### Battery Level
|
||||
Represents the battery level as a percentage (0-100%). Bindings for things supporting battery level in a different format (e.g. 4 levels) should convert to a percentage to provide a consistent battery level reading.
|
||||
|
||||
The ```system.battery-level``` channel is of type ```system.battery-level``` and supports the ```Number``` item and is in the ```Battery``` category.
|
||||
This channel provides the battery level as a percentage and also reflects the low battery warning state. If the battery state is in low battery warning state, this will read 0%.
|
||||
### Switch 1
|
||||
Switch the power on and off.
|
||||
|
||||
|
@ -277,7 +271,6 @@ Association group 3 supports 1 node.
|
|||
| COMMAND_CLASS_POWERLEVEL_V1| |
|
||||
| COMMAND_CLASS_PROTECTION_V2| |
|
||||
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
|
||||
| COMMAND_CLASS_BATTERY_V1| |
|
||||
| COMMAND_CLASS_ASSOCIATION_V2| |
|
||||
| COMMAND_CLASS_VERSION_V2| |
|
||||
#### Endpoint 1
|
||||
|
|
|
@ -50,7 +50,7 @@ The following table summarises the channels available for the YRD446 -:
|
|||
| Alarm (raw) | alarm_raw | alarm_raw | | String |
|
||||
| Alarm (general) | alarm_general | alarm_general | Alarm | Switch |
|
||||
| Battery Level | battery-level | system.battery_level | Battery | Number |
|
||||
| Clock Time Offset | time_offset | time_offset | Temperature | Number |
|
||||
| Clock Time Offset | time_offset | time_offset | Time | Number |
|
||||
|
||||
### Door Lock
|
||||
Lock and unlock the door.
|
||||
|
@ -127,7 +127,7 @@ This channel provides the battery level as a percentage and also reflects the lo
|
|||
### Clock Time Offset
|
||||
Provides the current time difference for the devices time.
|
||||
|
||||
The ```time_offset``` channel is of type ```time_offset``` and supports the ```Number``` item and is in the ```Temperature``` category.
|
||||
The ```time_offset``` channel is of type ```time_offset``` and supports the ```Number``` item and is in the ```Time``` category.
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -131,8 +131,8 @@ There must be at least three items as members of the group:
|
|||
* (Mandatory) Mode: Number (Zwave THERMOSTAT_MODE Format) or String (off, heat, cool, on, ...). `{ ga="thermostatMode" }`
|
||||
* (Mandatory) Temperature Ambient: Number. `{ ga="thermostatTemperatureAmbient" }`
|
||||
* (Mandatory) Temperature Setpoint: Number. `{ ga="thermostatTemperatureSetpoint" }`
|
||||
* (Optional) Humidity Setpoint High: Number. `{ ga="thermostatTemperatureSetpointHigh" }`
|
||||
* (Optional) Humidity Setpoint Low: Number. `{ ga="thermostatTemperatureSetpointLow" }`
|
||||
* (Optional) Temperature Setpoint High: Number. `{ ga="thermostatTemperatureSetpointHigh" }`
|
||||
* (Optional) Temperature Setpoint Low: Number. `{ ga="thermostatTemperatureSetpointLow" }`
|
||||
* (Optional) Humidity Ambient: Number. `{ ga="thermostatHumidityAmbient" }`
|
||||
|
||||
If your thermostat does not have a mode, you should create one and manually assign a value (e.g. heat, cool, on, etc.) to have proper functionality.
|
||||
|
|
Loading…
Reference in New Issue