minor updates.
This commit is contained in:
parent
0f8de89732
commit
a3c869e9e8
|
@ -56,6 +56,7 @@ cloud:
|
||||||
description: Xiaomi Gateway Light
|
description: Xiaomi Gateway Light
|
||||||
|
|
||||||
discovery:
|
discovery:
|
||||||
|
|
||||||
homekit:
|
homekit:
|
||||||
autostart: true
|
autostart: true
|
||||||
filter:
|
filter:
|
||||||
|
@ -64,6 +65,11 @@ homekit:
|
||||||
- light
|
- light
|
||||||
- switch
|
- switch
|
||||||
- input_boolean
|
- input_boolean
|
||||||
|
include_entities:
|
||||||
|
- binary_sensor.back_door_sensor_sensor
|
||||||
|
- binary_sensor.aeotec_zw120_door_window_sensor_gen5_sensor
|
||||||
|
- binary_sensor.single_car_garage_door_tilt_sensor_sensor
|
||||||
|
- binary_sensor.two_car_garage_door_tilt_sensor_sensor
|
||||||
|
|
||||||
map:
|
map:
|
||||||
updater:
|
updater:
|
||||||
|
|
|
@ -25,9 +25,11 @@ $ python3
|
||||||
'hello world!'
|
'hello world!'
|
||||||
>>>
|
>>>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Basics of Jinja
|
## Basics of Jinja
|
||||||
|
|
||||||
### Basic String Manipulation
|
### Basic String Manipulation
|
||||||
|
|
||||||
`{{ "hello this is a test" | upper }}` returns `HELLO THIS IS A TEST`
|
`{{ "hello this is a test" | upper }}` returns `HELLO THIS IS A TEST`
|
||||||
|
|
||||||
`{{ "HELLO THIS IS A TEST" | lower }}` returns `hello this is a test`
|
`{{ "HELLO THIS IS A TEST" | lower }}` returns `hello this is a test`
|
||||||
|
@ -51,6 +53,7 @@ $ python3
|
||||||
## Setting Variables
|
## Setting Variables
|
||||||
|
|
||||||
To have a varibale with a name `val` and with value `hello`, use the following:
|
To have a varibale with a name `val` and with value `hello`, use the following:
|
||||||
|
|
||||||
```
|
```
|
||||||
{% set val = "hello" %}
|
{% set val = "hello" %}
|
||||||
```
|
```
|
||||||
|
@ -58,13 +61,16 @@ To have a varibale with a name `val` and with value `hello`, use the following:
|
||||||
### Loops and Loop Indexes
|
### Loops and Loop Indexes
|
||||||
|
|
||||||
Iterate/Loop thru an array in reverse order
|
Iterate/Loop thru an array in reverse order
|
||||||
|
|
||||||
```
|
```
|
||||||
{% set values = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k"] %}
|
{% set values = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k"] %}
|
||||||
{% for item in values %}
|
{% for item in values %}
|
||||||
{{ values[loop.revindex] }}
|
{{ values[loop.revindex] }}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
```
|
```
|
||||||
|
|
||||||
prints the following:
|
prints the following:
|
||||||
|
|
||||||
```
|
```
|
||||||
k
|
k
|
||||||
j
|
j
|
||||||
|
@ -77,7 +83,9 @@ d
|
||||||
c
|
c
|
||||||
b
|
b
|
||||||
```
|
```
|
||||||
|
|
||||||
Other noteworthy loop properties you may want to know:
|
Other noteworthy loop properties you may want to know:
|
||||||
|
|
||||||
```
|
```
|
||||||
loop.index0 - zero based index of elements in a loop
|
loop.index0 - zero based index of elements in a loop
|
||||||
loop.revindex - reverse indexing of loop with index starting at one
|
loop.revindex - reverse indexing of loop with index starting at one
|
||||||
|
@ -86,6 +94,7 @@ loop.first - to check if the current index in the loop is the first one
|
||||||
loop.last - to check if the current index in the loop is the last item
|
loop.last - to check if the current index in the loop is the last item
|
||||||
loop.length - loop length
|
loop.length - loop length
|
||||||
```
|
```
|
||||||
|
|
||||||
### Maintaining state in a loop
|
### Maintaining state in a loop
|
||||||
|
|
||||||
The loops in Jinja are different from other programming languages, where you can't maintain state. For ex: you can define a variable, and if you try to increment, decrement or change the value in a loop, and after the loop, you will notice the value hasn't changed. Reason being, there is something called `scoping` in Jinja. You can read more about scoping on Jinja's official documentation, and if you are looking for a quick way to do this, you need to use `namespace`. With the namespace, you can create a scope and update the variable from within the loops. Here is how you define a namespace with a variable in it, called `numberFiveFound` and you can set the default value by assigning directly as follows.
|
The loops in Jinja are different from other programming languages, where you can't maintain state. For ex: you can define a variable, and if you try to increment, decrement or change the value in a loop, and after the loop, you will notice the value hasn't changed. Reason being, there is something called `scoping` in Jinja. You can read more about scoping on Jinja's official documentation, and if you are looking for a quick way to do this, you need to use `namespace`. With the namespace, you can create a scope and update the variable from within the loops. Here is how you define a namespace with a variable in it, called `numberFiveFound` and you can set the default value by assigning directly as follows.
|
||||||
|
@ -93,6 +102,7 @@ The loops in Jinja are different from other programming languages, where you can
|
||||||
```
|
```
|
||||||
{% set ns = namespace(numberFiveFound=false) %}
|
{% set ns = namespace(numberFiveFound=false) %}
|
||||||
```
|
```
|
||||||
|
|
||||||
You can then easily change the value from a loop and still able to access the updated value as follows:
|
You can then easily change the value from a loop and still able to access the updated value as follows:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -116,6 +126,7 @@ If you do not use namespace and try to do the same thing using simple variables,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{{ numberFiveFound }}
|
{{ numberFiveFound }}
|
||||||
```
|
```
|
||||||
|
|
||||||
It will return `False` even though the number "5" exists in the loop.
|
It will return `False` even though the number "5" exists in the loop.
|
||||||
|
|
||||||
## 1. To see which entities are exposed to your alexa platform, run the following script
|
## 1. To see which entities are exposed to your alexa platform, run the following script
|
||||||
|
@ -298,7 +309,8 @@ Sample code that uses macros to convert temperature from Fahrenheit to Centigrad
|
||||||
```
|
```
|
||||||
|
|
||||||
## 5.a Humidex Calculation
|
## 5.a Humidex Calculation
|
||||||
You can calculate the humidex based on Temperature and Relative Humidity using the following jinja macro
|
|
||||||
|
You can calculate the humidex based on Temperature and Humidity using the following jinja macro
|
||||||
|
|
||||||
```
|
```
|
||||||
{% macro humidex(T, H) %}
|
{% macro humidex(T, H) %}
|
||||||
|
@ -317,6 +329,21 @@ You can calculate the humidex based on Temperature and Relative Humidity using t
|
||||||
|
|
||||||
The output of that would be `24.455823489173447`.
|
The output of that would be `24.455823489173447`.
|
||||||
|
|
||||||
|
## 5.b Heat Index Calculation
|
||||||
|
|
||||||
|
You can calculate the heat index based on Temperature and Relative Humidity using the following jinja macro
|
||||||
|
|
||||||
|
```
|
||||||
|
{% macro heatindex(F, rh) %}
|
||||||
|
{% set hIndex = -42.379 + 2.04901523*F + 10.14333127*rh - 0.22475541*F*rh - 6.83783*(10**-3)*F*F - 5.481717*(10**-2)*rh*rh + 1.22874*(10**-3)*F*F*rh + 8.5282*(10**-4)*F*rh*rh - 1.99*10**-6*F*F*rh*rh %}
|
||||||
|
{{ hIndex }}
|
||||||
|
{% endmacro %}
|
||||||
|
|
||||||
|
{{ heatindex(85, 50) }}
|
||||||
|
```
|
||||||
|
|
||||||
|
The output of that would be `86.4593188`.
|
||||||
|
|
||||||
## 6. Trigger Data in Automations
|
## 6. Trigger Data in Automations
|
||||||
|
|
||||||
Ever wondered what trigger data is available for you when writing automations? Just copy the mqtt.publish service below
|
Ever wondered what trigger data is available for you when writing automations? Just copy the mqtt.publish service below
|
||||||
|
@ -437,6 +464,7 @@ You can pick and choose which entity you want to get attributes by changing the
|
||||||
## 8. Find out which zwave device checked in at when
|
## 8. Find out which zwave device checked in at when
|
||||||
|
|
||||||
To find out when was the last time a zwave device has communicated with the controller, run the script below
|
To find out when was the last time a zwave device has communicated with the controller, run the script below
|
||||||
|
|
||||||
```
|
```
|
||||||
{%- macro zwave_check() -%}
|
{%- macro zwave_check() -%}
|
||||||
{% for item in states.zwave %}
|
{% for item in states.zwave %}
|
||||||
|
@ -460,6 +488,7 @@ Here are the devices that have checked in the last 10 minutes:
|
||||||
{{ output }}
|
{{ output }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Here is the output of the above script:
|
### Here is the output of the above script:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -490,6 +519,7 @@ ZWave Stick - 8.82 minutes ago
|
||||||
```
|
```
|
||||||
|
|
||||||
## 9. Word Wrapping long text into multiple lines:
|
## 9. Word Wrapping long text into multiple lines:
|
||||||
|
|
||||||
To wrap text to a certain number of characters, use the following script:
|
To wrap text to a certain number of characters, use the following script:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -500,6 +530,7 @@ To wrap text to a certain number of characters, use the following script:
|
||||||
```
|
```
|
||||||
|
|
||||||
### Here is the output of the above script:
|
### Here is the output of the above script:
|
||||||
|
|
||||||
```
|
```
|
||||||
this is a long text. I mean it
|
this is a long text. I mean it
|
||||||
is a really really really long
|
is a really really really long
|
||||||
|
@ -533,6 +564,7 @@ Fun stuff...
|
||||||
```
|
```
|
||||||
|
|
||||||
### Here is the sample output of the above script... you may see a different output based on the components that are being used
|
### Here is the sample output of the above script... you may see a different output based on the components that are being used
|
||||||
|
|
||||||
```
|
```
|
||||||
['alarm_control_panel', 'automation', 'binary_sensor', 'calendar', 'camera', 'climate', 'device_tracker', 'group', 'input_boolean', 'input_datetime', 'input_label', 'input_number', 'input_select', 'input_text', 'light', 'media_player', 'proximity', 'script', 'sensor', 'sun', 'switch', 'timer', 'zone', 'zwave']
|
['alarm_control_panel', 'automation', 'binary_sensor', 'calendar', 'camera', 'climate', 'device_tracker', 'group', 'input_boolean', 'input_datetime', 'input_label', 'input_number', 'input_select', 'input_text', 'light', 'media_player', 'proximity', 'script', 'sensor', 'sun', 'switch', 'timer', 'zone', 'zwave']
|
||||||
```
|
```
|
||||||
|
@ -541,7 +573,6 @@ The way the above script works is it iterates through all the entities, and retr
|
||||||
|
|
||||||
## 11a. To get the current list of domains and the number of entities in each domain:
|
## 11a. To get the current list of domains and the number of entities in each domain:
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
{%- set unique_domains = states | map(attribute='domain') |list | unique | list -%}
|
{%- set unique_domains = states | map(attribute='domain') |list | unique | list -%}
|
||||||
[{%- for domain in unique_domains -%}
|
[{%- for domain in unique_domains -%}
|
||||||
|
@ -554,11 +585,11 @@ The way the above script works is it iterates through all the entities, and retr
|
||||||
```
|
```
|
||||||
|
|
||||||
### Here is the output of the above script... you may see a different output based on the components that are being used
|
### Here is the output of the above script... you may see a different output based on the components that are being used
|
||||||
|
|
||||||
```
|
```
|
||||||
[alarm_control_panel (1), automation (176), binary_sensor (59), calendar (4), camera (7), climate (2), device_tracker (10), group (106), image_processing (8), input_boolean (42), input_datetime (8), input_label (32), input_number (3), input_select (6), input_text (1), light (8), lock (1), media_player (13), proximity (2), script (26), sensor (330), sun (1), switch (28), timer (9), zone (24), and zwave (24)]
|
[alarm_control_panel (1), automation (176), binary_sensor (59), calendar (4), camera (7), climate (2), device_tracker (10), group (106), image_processing (8), input_boolean (42), input_datetime (8), input_label (32), input_number (3), input_select (6), input_text (1), light (8), lock (1), media_player (13), proximity (2), script (26), sensor (330), sun (1), switch (28), timer (9), zone (24), and zwave (24)]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## 12. Automatic `Group` creator
|
## 12. Automatic `Group` creator
|
||||||
|
|
||||||
Run the following script to automatically create groups sorted by the domain
|
Run the following script to automatically create groups sorted by the domain
|
||||||
|
@ -584,15 +615,16 @@ group:
|
||||||
|
|
||||||
## 13. To sum up list of attribute values in a list
|
## 13. To sum up list of attribute values in a list
|
||||||
|
|
||||||
```
|
````
|
||||||
something like this will wok: ```
|
something like this will wok: ```
|
||||||
{% set people = [{'name':'john', 'experience':15}, {'name':'steve', 'experience':10}, {'name':'will', 'experience':12}, {'name':'tinkerer', 'experience':25}] %}
|
{% set people = [{'name':'john', 'experience':15}, {'name':'steve', 'experience':10}, {'name':'will', 'experience':12}, {'name':'tinkerer', 'experience':25}] %}
|
||||||
Combined experience: {{ people | sum(attribute='experience') }} years
|
Combined experience: {{ people | sum(attribute='experience') }} years
|
||||||
```
|
````
|
||||||
|
|
||||||
### The above script returns `Combined experience: 62 years`
|
### The above script returns `Combined experience: 62 years`
|
||||||
|
|
||||||
## 14. To get list of attribute values as a string
|
## 14. To get list of attribute values as a string
|
||||||
|
|
||||||
```
|
```
|
||||||
{%set value_json = {
|
{%set value_json = {
|
||||||
"success": true,
|
"success": true,
|
||||||
|
@ -628,6 +660,7 @@ Or
|
||||||
{{ value_json.tags|map(attribute='tag')|join(', ') }}
|
{{ value_json.tags|map(attribute='tag')|join(', ') }}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## 15. Convert a given "Number" to "Words"
|
## 15. Convert a given "Number" to "Words"
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -678,7 +711,6 @@ Or
|
||||||
|
|
||||||
The above returns `negative one hundred and twenty-three million four hundred and fifty-six thousand seven hundred and eighty-nine`.
|
The above returns `negative one hundred and twenty-three million four hundred and fifty-six thousand seven hundred and eighty-nine`.
|
||||||
|
|
||||||
|
|
||||||
## 16. Positive Subtraction using nines
|
## 16. Positive Subtraction using nines
|
||||||
|
|
||||||
The following code is written by [@dale3h](https://github.com/dale3h), I thought it would make perfect sense to keep it in here.
|
The following code is written by [@dale3h](https://github.com/dale3h), I thought it would make perfect sense to keep it in here.
|
||||||
|
@ -690,6 +722,7 @@ The following code is written by [@dale3h](https://github.com/dale3h), I thought
|
||||||
```
|
```
|
||||||
|
|
||||||
The following is an example on how to use the nines macro:
|
The following is an example on how to use the nines macro:
|
||||||
|
|
||||||
```
|
```
|
||||||
873 - 218 = 655
|
873 - 218 = 655
|
||||||
|
|
||||||
|
@ -697,6 +730,7 @@ The following is an example on how to use the nines macro:
|
||||||
```
|
```
|
||||||
|
|
||||||
## 17. List devices that are home, list lights that are ON, list anything in a group with a specific state
|
## 17. List devices that are home, list lights that are ON, list anything in a group with a specific state
|
||||||
|
|
||||||
The following code lists all the entity friendly names in a group that has a specific state. Just change the group, and the desired state.
|
The following code lists all the entity friendly names in a group that has a specific state. Just change the group, and the desired state.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -725,9 +759,11 @@ Or
|
||||||
{% set open_doors = {{ states | selectattr('entity_id', 'in', state_attr('group.all_doors','entity_id')) | selectattr('state','in',['on','open']) | list | map(attribute='name') |join(', ') }}
|
{% set open_doors = {{ states | selectattr('entity_id', 'in', state_attr('group.all_doors','entity_id')) | selectattr('state','in',['on','open']) | list | map(attribute='name') |join(', ') }}
|
||||||
The following doors are open: {{ open_doors }}
|
The following doors are open: {{ open_doors }}
|
||||||
```
|
```
|
||||||
|
|
||||||
## 18. Check Battery Levels of ALL devices using one script:
|
## 18. Check Battery Levels of ALL devices using one script:
|
||||||
|
|
||||||
You can also use this in your automations to alert you when a specific device's battery level goes below certain threshold.
|
You can also use this in your automations to alert you when a specific device's battery level goes below certain threshold.
|
||||||
|
|
||||||
```
|
```
|
||||||
{%- for item in states -%}
|
{%- for item in states -%}
|
||||||
{%- for attrib in item.attributes|sort() if 'battery' in attrib %}
|
{%- for attrib in item.attributes|sort() if 'battery' in attrib %}
|
||||||
|
@ -737,6 +773,7 @@ You can also use this in your automations to alert you when a specific device's
|
||||||
```
|
```
|
||||||
|
|
||||||
The output should be something like:
|
The output should be something like:
|
||||||
|
|
||||||
```
|
```
|
||||||
Dining Room Motion Sensor Battery: 45.0
|
Dining Room Motion Sensor Battery: 45.0
|
||||||
Front Room Motion Sensor Battery: 51.0
|
Front Room Motion Sensor Battery: 51.0
|
||||||
|
@ -801,12 +838,14 @@ Removed: {{ removed |title }}
|
||||||
{{ list_diff(before_list, after_list) }}
|
{{ list_diff(before_list, after_list) }}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
The output should be something like:
|
The output should be something like:
|
||||||
|
|
||||||
```
|
```
|
||||||
Added: Beer
|
Added: Beer
|
||||||
Removed: Whiskey
|
Removed: Whiskey
|
||||||
```
|
```
|
||||||
|
|
||||||
It will show `None.` when there are no changes between the lists. If you are wondering where you would need this script, imagine a scenario where you are feeding your camera image to a machine learning program (like machinebox/tagbox), and you get a list of tags in return. You can then use this script to check the differences between images by comparing tags. Item #14 is a sample output of tagbox for given image. You can use that code to generate list from a given JSON.
|
It will show `None.` when there are no changes between the lists. If you are wondering where you would need this script, imagine a scenario where you are feeding your camera image to a machine learning program (like machinebox/tagbox), and you get a list of tags in return. You can then use this script to check the differences between images by comparing tags. Item #14 is a sample output of tagbox for given image. You can use that code to generate list from a given JSON.
|
||||||
|
|
||||||
## 20. Concatenating Two Lists
|
## 20. Concatenating Two Lists
|
||||||
|
@ -820,6 +859,7 @@ It will show `None.` when there are no changes between the lists. If you are won
|
||||||
```
|
```
|
||||||
|
|
||||||
The output would be
|
The output would be
|
||||||
|
|
||||||
```
|
```
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
|
@ -849,7 +889,6 @@ If you want the date to be more readable for display, you can use the script bel
|
||||||
|
|
||||||
Feel free to modify the `strftime` format that fits your need. You can also pass your sensor value - ex: `{{ get_date(states.sensor.mysensor.last_updated) }}`.
|
Feel free to modify the `strftime` format that fits your need. You can also pass your sensor value - ex: `{{ get_date(states.sensor.mysensor.last_updated) }}`.
|
||||||
|
|
||||||
|
|
||||||
## 22. BANNER/ASCII Text Command in Jinja
|
## 22. BANNER/ASCII Text Command in Jinja
|
||||||
|
|
||||||
Ever wondered how you can create ASCII Text using Jinja? I wrote this code while teaching programming to my kids, and I thought I'd add it to my jinja collection. If you are familiar with the `banner` command in unix/linux, this is very similar!
|
Ever wondered how you can create ASCII Text using Jinja? I wrote this code while teaching programming to my kids, and I thought I'd add it to my jinja collection. If you are familiar with the `banner` command in unix/linux, this is very similar!
|
||||||
|
|
|
@ -171,7 +171,6 @@
|
||||||
# {% endif %}
|
# {% endif %}
|
||||||
# entity_id: switch.kitchen
|
# entity_id: switch.kitchen
|
||||||
|
|
||||||
|
|
||||||
#########################################################################################################
|
#########################################################################################################
|
||||||
# Wrote this code for someone, where they wanted to drop a message to MQTT with topic name based on sensor
|
# Wrote this code for someone, where they wanted to drop a message to MQTT with topic name based on sensor
|
||||||
#########################################################################################################
|
#########################################################################################################
|
||||||
|
@ -202,7 +201,6 @@
|
||||||
# {% set mapping = '{ "hallway": "985335", "livingroom": "854267", "kitchen": "699555" }' %}
|
# {% set mapping = '{ "hallway": "985335", "livingroom": "854267", "kitchen": "699555" }' %}
|
||||||
# {{ 'Hassio/433/Honeywell/Honeywell_Door/Window_Sensor/' ~ mapping[trigger.entity_id.split('.')[1].split('_')[0] ~ ''] }}
|
# {{ 'Hassio/433/Honeywell/Honeywell_Door/Window_Sensor/' ~ mapping[trigger.entity_id.split('.')[1].split('_')[0] ~ ''] }}
|
||||||
|
|
||||||
|
|
||||||
#########################################################################################################
|
#########################################################################################################
|
||||||
# Wrote code for @chags - to pass a list of variables from an automation to a script
|
# Wrote code for @chags - to pass a list of variables from an automation to a script
|
||||||
#########################################################################################################
|
#########################################################################################################
|
||||||
|
@ -250,7 +248,6 @@
|
||||||
# {%- endmacro %}
|
# {%- endmacro %}
|
||||||
# {{ GetValue('MODEL : ') }}
|
# {{ GetValue('MODEL : ') }}
|
||||||
|
|
||||||
|
|
||||||
#########################################################################################################
|
#########################################################################################################
|
||||||
# Wrote this code for someone, where they wanted to have an input_boolean that controls effects
|
# Wrote this code for someone, where they wanted to have an input_boolean that controls effects
|
||||||
#########################################################################################################
|
#########################################################################################################
|
||||||
|
@ -354,7 +351,6 @@
|
||||||
# {{ ns.lowBattery -}}
|
# {{ ns.lowBattery -}}
|
||||||
# {{- ' battery is ' if ns.lowBattery.split(',')|count == 1 else ' batteries are ' -}} less than 25 percent.
|
# {{- ' battery is ' if ns.lowBattery.split(',')|count == 1 else ' batteries are ' -}} less than 25 percent.
|
||||||
|
|
||||||
|
|
||||||
##############################################################################################################################
|
##############################################################################################################################
|
||||||
# Wrote this for @marmar63#0271 - he wanted to run a script `x` number of times
|
# Wrote this for @marmar63#0271 - he wanted to run a script `x` number of times
|
||||||
# - reduce volume, restore volume level...etc
|
# - reduce volume, restore volume level...etc
|
||||||
|
@ -477,7 +473,6 @@
|
||||||
# - sensor.robotic_mower_name
|
# - sensor.robotic_mower_name
|
||||||
# - sensor.robotic_mower_serial
|
# - sensor.robotic_mower_serial
|
||||||
|
|
||||||
|
|
||||||
# robotic_mower_scheduling:
|
# robotic_mower_scheduling:
|
||||||
# view: no
|
# view: no
|
||||||
# name: 'Robotic mower scheduling'
|
# name: 'Robotic mower scheduling'
|
||||||
|
@ -498,7 +493,6 @@
|
||||||
# - input_datetime.bob_start_time_7
|
# - input_datetime.bob_start_time_7
|
||||||
# - input_datetime.bob_stop_time_7
|
# - input_datetime.bob_stop_time_7
|
||||||
|
|
||||||
|
|
||||||
# robotic_mower_automations:
|
# robotic_mower_automations:
|
||||||
# view: no
|
# view: no
|
||||||
# name: 'Robotic mower Automations'
|
# name: 'Robotic mower Automations'
|
||||||
|
@ -623,7 +617,6 @@
|
||||||
# state_topic: "robotic_mower/device/serial"
|
# state_topic: "robotic_mower/device/serial"
|
||||||
# name: "Robotic mower Serial"
|
# name: "Robotic mower Serial"
|
||||||
|
|
||||||
|
|
||||||
# ###########################################################
|
# ###########################################################
|
||||||
# ## binary_sensor
|
# ## binary_sensor
|
||||||
# ###########################################################
|
# ###########################################################
|
||||||
|
@ -1003,3 +996,15 @@
|
||||||
# {% for city in value_json.cities if city.id == '126' %}
|
# {% for city in value_json.cities if city.id == '126' %}
|
||||||
# {{ city.id }}
|
# {{ city.id }}
|
||||||
# {% endfor %}
|
# {% endfor %}
|
||||||
|
|
||||||
|
# homeassistant:
|
||||||
|
|
||||||
|
# script:
|
||||||
|
# sync_ecobee_temp:
|
||||||
|
# alias: Push Ecobee target temp to the other thermostats
|
||||||
|
# sequence:
|
||||||
|
# - service: climate.set_temperature
|
||||||
|
# data_template:
|
||||||
|
# entity_id: climate.cooler_fan
|
||||||
|
# temperature: "{{ states.climate.main_floor.temperature |float }}"
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="48" name="COMMAND_CLASS_SENSOR_BINARY" version="1" request_flags="4" innif="true">
|
<CommandClass id="48" name="COMMAND_CLASS_SENSOR_BINARY" version="1" request_flags="4" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="bool" genre="user" instance="1" index="0" label="Sensor" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="False" />
|
<Value type="bool" genre="user" instance="1" index="0" label="Sensor" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="True" />
|
||||||
<SensorMap index="0" type="47" />
|
<SensorMap index="0" type="47" />
|
||||||
<SensorMap index="0" type="55" />
|
<SensorMap index="0" type="55" />
|
||||||
<SensorMap index="0" type="63" />
|
<SensorMap index="0" type="63" />
|
||||||
|
@ -34,10 +34,10 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" innif="true">
|
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="72.1" />
|
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="64.2" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="3" label="Luminance" units="lux" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
<Value type="decimal" genre="user" instance="1" index="3" label="Luminance" units="lux" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="4" label="Power" units="W" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="46" />
|
<Value type="decimal" genre="user" instance="1" index="4" label="Power" units="W" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="46" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="5" label="Relative Humidity" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="40" />
|
<Value type="decimal" genre="user" instance="1" index="5" label="Relative Humidity" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="48" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="4" after_mark="true" innif="true">
|
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="4" after_mark="true" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
|
@ -168,7 +168,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="4" innif="true">
|
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="4" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="64" />
|
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="99" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="130" name="COMMAND_CLASS_HAIL" version="1" request_flags="4" after_mark="true" innif="true">
|
<CommandClass id="130" name="COMMAND_CLASS_HAIL" version="1" request_flags="4" after_mark="true" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
|
@ -216,9 +216,9 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" innif="true">
|
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="73.0" />
|
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="64.5" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="3" label="Luminance" units="lux" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="39" />
|
<Value type="decimal" genre="user" instance="1" index="3" label="Luminance" units="lux" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="5" label="Relative Humidity" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="36" />
|
<Value type="decimal" genre="user" instance="1" index="5" label="Relative Humidity" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="50" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="27" label="Ultraviolet" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
<Value type="decimal" genre="user" instance="1" index="27" label="Ultraviolet" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="4" after_mark="true" innif="true">
|
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="4" after_mark="true" innif="true">
|
||||||
|
@ -350,7 +350,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="4" innif="true">
|
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="4" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="82" />
|
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="49" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="130" name="COMMAND_CLASS_HAIL" version="1" request_flags="4" after_mark="true" innif="true">
|
<CommandClass id="130" name="COMMAND_CLASS_HAIL" version="1" request_flags="4" after_mark="true" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
|
@ -379,7 +379,118 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="4" name="Two Car Garage Door Tilt Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
<Node id="4" name="Two Car Garage Door Tilt Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
|
<Manufacturer id="14a" name="Ecolink">
|
||||||
|
<Product type="4" id="3" name="Garage Door Tilt Sensor" />
|
||||||
|
</Manufacturer>
|
||||||
|
<CommandClasses>
|
||||||
|
<CommandClass id="32" name="COMMAND_CLASS_BASIC" version="1" request_flags="4" innif="true" setasreport="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="byte" genre="basic" instance="1" index="0" label="Basic" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="48" name="COMMAND_CLASS_SENSOR_BINARY" version="1" request_flags="4" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="bool" genre="user" instance="1" index="0" label="Sensor" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="True" />
|
||||||
|
<SensorMap index="0" type="255" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1">
|
||||||
|
<Instance index="1" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="94" name="COMMAND_CLASS_ZWAVEPLUS_INFO" version="1" request_flags="4" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="byte" genre="system" instance="1" index="0" label="ZWave+ Version" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="1" />
|
||||||
|
<Value type="short" genre="system" instance="1" index="1" label="InstallerIcon" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-32768" max="32767" value="3079" />
|
||||||
|
<Value type="short" genre="system" instance="1" index="2" label="UserIcon" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-32768" max="32767" value="3072" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="112" name="COMMAND_CLASS_CONFIGURATION" version="1" request_flags="4" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="list" genre="config" instance="1" index="223" label="Fault restore" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="1" vindex="0" size="1">
|
||||||
|
<Help>Enable/Disable Basic Sets of 0x00 on a fault restore to nodes in Group 2</Help>
|
||||||
|
<Item label="Disable" value="0" />
|
||||||
|
<Item label="Enable" value="255" />
|
||||||
|
</Value>
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="113" name="COMMAND_CLASS_ALARM" version="5" request_flags="2" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="byte" genre="user" instance="1" index="0" label="Alarm Type" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
|
<Value type="byte" genre="user" instance="1" index="1" label="Alarm Level" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
|
<Value type="byte" genre="user" instance="1" index="2" label="SourceNodeId" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
|
<Value type="byte" genre="user" instance="1" index="9" label="Access Control" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="22" />
|
||||||
|
<Value type="byte" genre="user" instance="1" index="10" label="Burglar" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
|
<Value type="byte" genre="user" instance="1" index="11" label="Power Management" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="114" name="COMMAND_CLASS_MANUFACTURER_SPECIFIC" version="1" request_flags="4" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="115" name="COMMAND_CLASS_POWERLEVEL" version="1" request_flags="4" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="list" genre="system" instance="1" index="0" label="Powerlevel" units="dB" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" vindex="0" size="1">
|
||||||
|
<Item label="Normal" value="0" />
|
||||||
|
<Item label="-1dB" value="1" />
|
||||||
|
<Item label="-2dB" value="2" />
|
||||||
|
<Item label="-3dB" value="3" />
|
||||||
|
<Item label="-4dB" value="4" />
|
||||||
|
<Item label="-5dB" value="5" />
|
||||||
|
<Item label="-6dB" value="6" />
|
||||||
|
<Item label="-7dB" value="7" />
|
||||||
|
<Item label="-8dB" value="8" />
|
||||||
|
<Item label="-9dB" value="9" />
|
||||||
|
</Value>
|
||||||
|
<Value type="byte" genre="system" instance="1" index="1" label="Timeout" units="seconds" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
|
<Value type="button" genre="system" instance="1" index="2" label="Set Powerlevel" units="" read_only="false" write_only="true" verify_changes="false" poll_intensity="0" min="0" max="0" />
|
||||||
|
<Value type="byte" genre="system" instance="1" index="3" label="Test Node" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
|
<Value type="list" genre="system" instance="1" index="4" label="Test Powerlevel" units="dB" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" vindex="0" size="1">
|
||||||
|
<Item label="Normal" value="0" />
|
||||||
|
<Item label="-1dB" value="1" />
|
||||||
|
<Item label="-2dB" value="2" />
|
||||||
|
<Item label="-3dB" value="3" />
|
||||||
|
<Item label="-4dB" value="4" />
|
||||||
|
<Item label="-5dB" value="5" />
|
||||||
|
<Item label="-6dB" value="6" />
|
||||||
|
<Item label="-7dB" value="7" />
|
||||||
|
<Item label="-8dB" value="8" />
|
||||||
|
<Item label="-9dB" value="9" />
|
||||||
|
</Value>
|
||||||
|
<Value type="short" genre="system" instance="1" index="5" label="Frame Count" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="-32768" max="32767" value="0" />
|
||||||
|
<Value type="button" genre="system" instance="1" index="6" label="Test" units="" read_only="false" write_only="true" verify_changes="false" poll_intensity="0" min="0" max="0" />
|
||||||
|
<Value type="button" genre="system" instance="1" index="7" label="Report" units="" read_only="false" write_only="true" verify_changes="false" poll_intensity="0" min="0" max="0" />
|
||||||
|
<Value type="list" genre="system" instance="1" index="8" label="Test Status" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" vindex="0" size="1">
|
||||||
|
<Item label="Failed" value="0" />
|
||||||
|
<Item label="Success" value="1" />
|
||||||
|
<Item label="In Progress" value="2" />
|
||||||
|
</Value>
|
||||||
|
<Value type="short" genre="system" instance="1" index="9" label="Acked Frames" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-32768" max="32767" value="0" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="4" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="100" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="132" name="COMMAND_CLASS_WAKE_UP" version="2" request_flags="2" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="int" genre="system" instance="1" index="0" label="Wake-up Interval" units="Seconds" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="14400" />
|
||||||
|
<Value type="int" genre="system" instance="1" index="1" label="Minimum Wake-up Interval" units="Seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="3600" />
|
||||||
|
<Value type="int" genre="system" instance="1" index="2" label="Maximum Wake-up Interval" units="Seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="604800" />
|
||||||
|
<Value type="int" genre="system" instance="1" index="3" label="Default Wake-up Interval" units="Seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="14400" />
|
||||||
|
<Value type="int" genre="system" instance="1" index="4" label="Wake-up Interval Step" units="Seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="200" />
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="133" name="COMMAND_CLASS_ASSOCIATION" version="1" request_flags="4" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Associations num_groups="2">
|
||||||
|
<Group index="1" max_associations="5" label="Lifeline" auto="true">
|
||||||
|
<Node id="1" />
|
||||||
|
</Group>
|
||||||
|
<Group index="2" max_associations="5" label="Basic Report" auto="false" />
|
||||||
|
</Associations>
|
||||||
|
</CommandClass>
|
||||||
|
<CommandClass id="134" name="COMMAND_CLASS_VERSION" version="1" request_flags="4" innif="true">
|
||||||
|
<Instance index="1" />
|
||||||
|
<Value type="string" genre="system" instance="1" index="0" label="Library Version" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="6" />
|
||||||
|
<Value type="string" genre="system" instance="1" index="1" label="Protocol Version" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="4.05" />
|
||||||
|
<Value type="string" genre="system" instance="1" index="2" label="Application Version" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="10.01" />
|
||||||
|
</CommandClass>
|
||||||
|
</CommandClasses>
|
||||||
|
</Node>
|
||||||
|
<Node id="5" name="Single Car Garage Door Tilt Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
<Manufacturer id="14a" name="Ecolink">
|
<Manufacturer id="14a" name="Ecolink">
|
||||||
<Product type="4" id="3" name="Garage Door Tilt Sensor" />
|
<Product type="4" id="3" name="Garage Door Tilt Sensor" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -490,118 +601,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="5" name="Single Car Garage Door Tilt Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
<Node id="6" name="Back Door Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
<Manufacturer id="14a" name="Ecolink">
|
|
||||||
<Product type="4" id="3" name="Garage Door Tilt Sensor" />
|
|
||||||
</Manufacturer>
|
|
||||||
<CommandClasses>
|
|
||||||
<CommandClass id="32" name="COMMAND_CLASS_BASIC" version="1" request_flags="4" innif="true" setasreport="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="byte" genre="basic" instance="1" index="0" label="Basic" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="48" name="COMMAND_CLASS_SENSOR_BINARY" version="1" request_flags="4" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="bool" genre="user" instance="1" index="0" label="Sensor" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="False" />
|
|
||||||
<SensorMap index="0" type="255" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1">
|
|
||||||
<Instance index="1" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="94" name="COMMAND_CLASS_ZWAVEPLUS_INFO" version="1" request_flags="4" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="byte" genre="system" instance="1" index="0" label="ZWave+ Version" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="1" />
|
|
||||||
<Value type="short" genre="system" instance="1" index="1" label="InstallerIcon" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-32768" max="32767" value="3079" />
|
|
||||||
<Value type="short" genre="system" instance="1" index="2" label="UserIcon" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-32768" max="32767" value="3072" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="112" name="COMMAND_CLASS_CONFIGURATION" version="1" request_flags="4" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="list" genre="config" instance="1" index="223" label="Fault restore" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="1" vindex="0" size="1">
|
|
||||||
<Help>Enable/Disable Basic Sets of 0x00 on a fault restore to nodes in Group 2</Help>
|
|
||||||
<Item label="Disable" value="0" />
|
|
||||||
<Item label="Enable" value="255" />
|
|
||||||
</Value>
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="113" name="COMMAND_CLASS_ALARM" version="5" request_flags="2" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="byte" genre="user" instance="1" index="0" label="Alarm Type" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
|
||||||
<Value type="byte" genre="user" instance="1" index="1" label="Alarm Level" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
|
||||||
<Value type="byte" genre="user" instance="1" index="2" label="SourceNodeId" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
|
||||||
<Value type="byte" genre="user" instance="1" index="9" label="Access Control" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="23" />
|
|
||||||
<Value type="byte" genre="user" instance="1" index="10" label="Burglar" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
|
||||||
<Value type="byte" genre="user" instance="1" index="11" label="Power Management" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="114" name="COMMAND_CLASS_MANUFACTURER_SPECIFIC" version="1" request_flags="4" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="115" name="COMMAND_CLASS_POWERLEVEL" version="1" request_flags="4" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="list" genre="system" instance="1" index="0" label="Powerlevel" units="dB" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" vindex="0" size="1">
|
|
||||||
<Item label="Normal" value="0" />
|
|
||||||
<Item label="-1dB" value="1" />
|
|
||||||
<Item label="-2dB" value="2" />
|
|
||||||
<Item label="-3dB" value="3" />
|
|
||||||
<Item label="-4dB" value="4" />
|
|
||||||
<Item label="-5dB" value="5" />
|
|
||||||
<Item label="-6dB" value="6" />
|
|
||||||
<Item label="-7dB" value="7" />
|
|
||||||
<Item label="-8dB" value="8" />
|
|
||||||
<Item label="-9dB" value="9" />
|
|
||||||
</Value>
|
|
||||||
<Value type="byte" genre="system" instance="1" index="1" label="Timeout" units="seconds" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
|
||||||
<Value type="button" genre="system" instance="1" index="2" label="Set Powerlevel" units="" read_only="false" write_only="true" verify_changes="false" poll_intensity="0" min="0" max="0" />
|
|
||||||
<Value type="byte" genre="system" instance="1" index="3" label="Test Node" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
|
||||||
<Value type="list" genre="system" instance="1" index="4" label="Test Powerlevel" units="dB" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" vindex="0" size="1">
|
|
||||||
<Item label="Normal" value="0" />
|
|
||||||
<Item label="-1dB" value="1" />
|
|
||||||
<Item label="-2dB" value="2" />
|
|
||||||
<Item label="-3dB" value="3" />
|
|
||||||
<Item label="-4dB" value="4" />
|
|
||||||
<Item label="-5dB" value="5" />
|
|
||||||
<Item label="-6dB" value="6" />
|
|
||||||
<Item label="-7dB" value="7" />
|
|
||||||
<Item label="-8dB" value="8" />
|
|
||||||
<Item label="-9dB" value="9" />
|
|
||||||
</Value>
|
|
||||||
<Value type="short" genre="system" instance="1" index="5" label="Frame Count" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="-32768" max="32767" value="0" />
|
|
||||||
<Value type="button" genre="system" instance="1" index="6" label="Test" units="" read_only="false" write_only="true" verify_changes="false" poll_intensity="0" min="0" max="0" />
|
|
||||||
<Value type="button" genre="system" instance="1" index="7" label="Report" units="" read_only="false" write_only="true" verify_changes="false" poll_intensity="0" min="0" max="0" />
|
|
||||||
<Value type="list" genre="system" instance="1" index="8" label="Test Status" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" vindex="0" size="1">
|
|
||||||
<Item label="Failed" value="0" />
|
|
||||||
<Item label="Success" value="1" />
|
|
||||||
<Item label="In Progress" value="2" />
|
|
||||||
</Value>
|
|
||||||
<Value type="short" genre="system" instance="1" index="9" label="Acked Frames" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-32768" max="32767" value="0" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="4" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="100" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="132" name="COMMAND_CLASS_WAKE_UP" version="2" request_flags="2" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="int" genre="system" instance="1" index="0" label="Wake-up Interval" units="Seconds" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="14400" />
|
|
||||||
<Value type="int" genre="system" instance="1" index="1" label="Minimum Wake-up Interval" units="Seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="3600" />
|
|
||||||
<Value type="int" genre="system" instance="1" index="2" label="Maximum Wake-up Interval" units="Seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="604800" />
|
|
||||||
<Value type="int" genre="system" instance="1" index="3" label="Default Wake-up Interval" units="Seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="14400" />
|
|
||||||
<Value type="int" genre="system" instance="1" index="4" label="Wake-up Interval Step" units="Seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="200" />
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="133" name="COMMAND_CLASS_ASSOCIATION" version="1" request_flags="4" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Associations num_groups="2">
|
|
||||||
<Group index="1" max_associations="5" label="Lifeline" auto="true">
|
|
||||||
<Node id="1" />
|
|
||||||
</Group>
|
|
||||||
<Group index="2" max_associations="5" label="Basic Report" auto="false" />
|
|
||||||
</Associations>
|
|
||||||
</CommandClass>
|
|
||||||
<CommandClass id="134" name="COMMAND_CLASS_VERSION" version="1" request_flags="4" innif="true">
|
|
||||||
<Instance index="1" />
|
|
||||||
<Value type="string" genre="system" instance="1" index="0" label="Library Version" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="6" />
|
|
||||||
<Value type="string" genre="system" instance="1" index="1" label="Protocol Version" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="4.05" />
|
|
||||||
<Value type="string" genre="system" instance="1" index="2" label="Application Version" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="10.01" />
|
|
||||||
</CommandClass>
|
|
||||||
</CommandClasses>
|
|
||||||
</Node>
|
|
||||||
<Node id="6" name="Back Door Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
|
||||||
<Manufacturer id="14a" name="Ecolink">
|
<Manufacturer id="14a" name="Ecolink">
|
||||||
<Product type="4" id="2" name="Door Sensor" />
|
<Product type="4" id="2" name="Door Sensor" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -728,9 +728,9 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" innif="true">
|
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="76.5" />
|
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="69.2" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="3" label="Luminance" units="lux" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="137" />
|
<Value type="decimal" genre="user" instance="1" index="3" label="Luminance" units="lux" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="5" label="Relative Humidity" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="44" />
|
<Value type="decimal" genre="user" instance="1" index="5" label="Relative Humidity" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="51" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="27" label="Ultraviolet" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
<Value type="decimal" genre="user" instance="1" index="27" label="Ultraviolet" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="4" innif="true">
|
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="4" innif="true">
|
||||||
|
@ -1006,12 +1006,12 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="50" name="COMMAND_CLASS_METER" version="3" request_flags="2" innif="true">
|
<CommandClass id="50" name="COMMAND_CLASS_METER" version="3" request_flags="2" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="0" label="Energy" units="kWh" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="50.014" />
|
<Value type="decimal" genre="user" instance="1" index="0" label="Energy" units="kWh" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="51.930" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="1" label="Previous Reading" units="kWh" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="50.014" />
|
<Value type="decimal" genre="user" instance="1" index="1" label="Previous Reading" units="kWh" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="51.923" />
|
||||||
<Value type="int" genre="user" instance="1" index="2" label="Interval" units="seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="365" />
|
<Value type="int" genre="user" instance="1" index="2" label="Interval" units="seconds" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="65535" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="8" label="Power" units="W" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0.000" />
|
<Value type="decimal" genre="user" instance="1" index="8" label="Power" units="W" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="12.922" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="16" label="Voltage" units="V" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="116.082" />
|
<Value type="decimal" genre="user" instance="1" index="16" label="Voltage" units="V" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="122.486" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="20" label="Current" units="A" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0.000" />
|
<Value type="decimal" genre="user" instance="1" index="20" label="Current" units="A" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0.114" />
|
||||||
<Value type="bool" genre="user" instance="1" index="32" label="Exporting" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="False" />
|
<Value type="bool" genre="user" instance="1" index="32" label="Exporting" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="False" />
|
||||||
<Value type="button" genre="system" instance="1" index="33" label="Reset" units="" read_only="false" write_only="true" verify_changes="false" poll_intensity="0" min="0" max="0" />
|
<Value type="button" genre="system" instance="1" index="33" label="Reset" units="" read_only="false" write_only="true" verify_changes="false" poll_intensity="0" min="0" max="0" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
|
@ -1181,7 +1181,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="129" name="COMMAND_CLASS_CLOCK" version="1" request_flags="4" innif="true">
|
<CommandClass id="129" name="COMMAND_CLASS_CLOCK" version="1" request_flags="4" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="list" genre="user" instance="1" index="0" label="Day" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" vindex="3" size="1">
|
<Value type="list" genre="user" instance="1" index="0" label="Day" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" vindex="0" size="1">
|
||||||
<Item label="Monday" value="1" />
|
<Item label="Monday" value="1" />
|
||||||
<Item label="Tuesday" value="2" />
|
<Item label="Tuesday" value="2" />
|
||||||
<Item label="Wednesday" value="3" />
|
<Item label="Wednesday" value="3" />
|
||||||
|
@ -1190,8 +1190,8 @@
|
||||||
<Item label="Saturday" value="6" />
|
<Item label="Saturday" value="6" />
|
||||||
<Item label="Sunday" value="7" />
|
<Item label="Sunday" value="7" />
|
||||||
</Value>
|
</Value>
|
||||||
<Value type="byte" genre="user" instance="1" index="1" label="Hour" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="15" />
|
<Value type="byte" genre="user" instance="1" index="1" label="Hour" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="10" />
|
||||||
<Value type="byte" genre="user" instance="1" index="2" label="Minute" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="9" />
|
<Value type="byte" genre="user" instance="1" index="2" label="Minute" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="33" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="130" name="COMMAND_CLASS_HAIL" version="1" request_flags="4" after_mark="true" innif="true">
|
<CommandClass id="130" name="COMMAND_CLASS_HAIL" version="1" request_flags="4" after_mark="true" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
|
@ -1328,7 +1328,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="17" name="Stairs Motion Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
<Node id="17" name="Stairs Motion Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
<Manufacturer id="14a" name="Ecolink">
|
<Manufacturer id="14a" name="Ecolink">
|
||||||
<Product type="4" id="1" name="Motion Detector" />
|
<Product type="4" id="1" name="Motion Detector" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -1581,7 +1581,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="23" name="Kitchen Siren" location="" basic="4" generic="16" specific="5" roletype="5" devicetype="3840" nodetype="0" type="Siren" listening="true" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
<Node id="23" name="Kitchen Siren" location="" basic="4" generic="16" specific="5" roletype="5" devicetype="3840" nodetype="0" type="Siren" listening="true" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
<Manufacturer id="14a" name="Ecolink">
|
<Manufacturer id="14a" name="Ecolink">
|
||||||
<Product type="5" id="a" name="Unknown: type=0005, id=000a" />
|
<Product type="5" id="a" name="Unknown: type=0005, id=000a" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -1703,7 +1703,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="25" name="Basement Door Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
<Node id="25" name="Basement Door Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
<Manufacturer id="14a" name="Ecolink">
|
<Manufacturer id="14a" name="Ecolink">
|
||||||
<Product type="4" id="2" name="Unknown: type=0004, id=0002" />
|
<Product type="4" id="2" name="Unknown: type=0004, id=0002" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -2023,7 +2023,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="28" name="Audio Detector" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3073" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
<Node id="28" name="Audio Detector" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3073" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
<Manufacturer id="14a" name="Ecolink">
|
<Manufacturer id="14a" name="Ecolink">
|
||||||
<Product type="5" id="f" name="FireFighter" />
|
<Product type="5" id="f" name="FireFighter" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -2038,7 +2038,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="7" innif="true">
|
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="7" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="73.94" />
|
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="69.62" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="4" innif="true">
|
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="4" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
|
@ -2132,7 +2132,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="29" name="Garage Door Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
<Node id="29" name="Garage Door Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3072" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
<Manufacturer id="14a" name="Ecolink">
|
<Manufacturer id="14a" name="Ecolink">
|
||||||
<Product type="4" id="2" name="Unknown: type=0004, id=0002" />
|
<Product type="4" id="2" name="Unknown: type=0004, id=0002" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -2238,7 +2238,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="31" name="Aeotec Water Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3079" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Dynamic">
|
<Node id="31" name="Aeotec Water Sensor" location="" basic="4" generic="7" specific="1" roletype="6" devicetype="3079" nodetype="0" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
|
||||||
<Manufacturer id="86" name="Aeotec">
|
<Manufacturer id="86" name="Aeotec">
|
||||||
<Product type="102" id="7a" name="Unknown: type=0102, id=007a" />
|
<Product type="102" id="7a" name="Unknown: type=0102, id=007a" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -2253,7 +2253,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" request_flags="1" innif="true">
|
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" request_flags="1" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="C" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="17.7" />
|
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="C" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="17.6" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="5" innif="true">
|
<CommandClass id="90" name="COMMAND_CLASS_DEVICE_RESET_LOCALLY" version="1" request_flags="5" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
|
@ -2341,7 +2341,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="5" innif="true">
|
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="5" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="14" />
|
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="132" name="COMMAND_CLASS_WAKE_UP" version="2" request_flags="1" innif="true">
|
<CommandClass id="132" name="COMMAND_CLASS_WAKE_UP" version="2" request_flags="1" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
|
@ -2405,9 +2405,9 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" innif="true">
|
<CommandClass id="49" name="COMMAND_CLASS_SENSOR_MULTILEVEL" version="5" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="76.7" />
|
<Value type="decimal" genre="user" instance="1" index="1" label="Temperature" units="F" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="69.8" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="3" label="Luminance" units="lux" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
<Value type="decimal" genre="user" instance="1" index="3" label="Luminance" units="lux" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="5" label="Relative Humidity" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="42" />
|
<Value type="decimal" genre="user" instance="1" index="5" label="Relative Humidity" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="49" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="27" label="Ultraviolet" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
<Value type="decimal" genre="user" instance="1" index="27" label="Ultraviolet" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="0" />
|
||||||
<Value type="decimal" genre="user" instance="1" index="37" label="Radon Concentration" units="bq/m3" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="60" />
|
<Value type="decimal" genre="user" instance="1" index="37" label="Radon Concentration" units="bq/m3" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="0" value="60" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
|
@ -2666,7 +2666,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
</CommandClasses>
|
</CommandClasses>
|
||||||
</Node>
|
</Node>
|
||||||
<Node id="38" name="" location="" basic="4" generic="7" specific="1" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="CacheLoad">
|
<Node id="38" name="" location="" basic="4" generic="7" specific="1" type="Notification Sensor" listening="false" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Session">
|
||||||
<Manufacturer id="0" name="">
|
<Manufacturer id="0" name="">
|
||||||
<Product type="0" id="0" name="" />
|
<Product type="0" id="0" name="" />
|
||||||
</Manufacturer>
|
</Manufacturer>
|
||||||
|
@ -2828,7 +2828,7 @@
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="4" innif="true">
|
<CommandClass id="128" name="COMMAND_CLASS_BATTERY" version="1" request_flags="4" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="72" />
|
<Value type="byte" genre="user" instance="1" index="0" label="Battery Level" units="%" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />
|
||||||
</CommandClass>
|
</CommandClass>
|
||||||
<CommandClass id="132" name="COMMAND_CLASS_WAKE_UP" version="2" request_flags="2" innif="true">
|
<CommandClass id="132" name="COMMAND_CLASS_WAKE_UP" version="2" request_flags="2" innif="true">
|
||||||
<Instance index="1" />
|
<Instance index="1" />
|
||||||
|
|
Loading…
Reference in New Issue