Updates for initial z-wave setup ; updated dashboards for zwave / sensors ; updated config so z-wave + arduino work together
parent
247530e3a2
commit
6c6fe7a790
10 changed files with 121 additions and 46 deletions
@ -0,0 +1,46 @@ |
||||
# Dashboard Config |
||||
title: Sensors |
||||
widget_dimensions: [120, 120] |
||||
widget_size: [1, 1] |
||||
widget_margins: [5, 5] |
||||
columns: 6 |
||||
rows: 3 |
||||
global_parameters: |
||||
use_comma: 0 |
||||
precision: 2 |
||||
use_hass_icon: 1 |
||||
shorten: 1 |
||||
|
||||
nav_back: |
||||
widget_type: navigate |
||||
dashboard: Main |
||||
icon_inactive: mdi-arrow-left-bold-outline |
||||
widget_style: "background: MEDIUMSLATEBLUE;" |
||||
|
||||
label_desk: |
||||
widget_type: label |
||||
text: Desk |
||||
widget_style: "background: MEDIUMSLATEBLUE;" |
||||
|
||||
label_system_status: |
||||
widget_type: label |
||||
text: System |
||||
widget_style: "background: MEDIUMSLATEBLUE;" |
||||
|
||||
label_attic: |
||||
widget_type: label |
||||
text: Attic |
||||
widget_style: "background: MEDIUMSLATEBLUE;" |
||||
|
||||
# Layout |
||||
layout: |
||||
- include: header |
||||
- nav_main, clock(3x1), nav_back, reload |
||||
- label_desk(6x1) |
||||
- include: sensors_desk |
||||
- temp, heat_index, light_value, light, humidity, pressure |
||||
- label_attic(6x1) |
||||
- label_system_status(6x1) |
||||
- include: status |
||||
- battery_status, battery_capacity, battery_voltage, battery_current, battery_health(2x1) |
||||
- ac_status, ac_current, ac_voltage, spacer(3x1) |
@ -0,0 +1,40 @@ |
||||
temp: |
||||
widget_type: sensor |
||||
title: "Temperature" |
||||
entity: sensor.sparkfun_weather_station_temp_f |
||||
sub_entity: sensor.sparkfun_weather_station_temp_c |
||||
units: '°F' |
||||
|
||||
heat_index: |
||||
widget_type: sensor |
||||
title: "Heat Index" |
||||
entity: sensor.sparkfun_weather_station_hi_f |
||||
sub_entity: sensor.sparkfun_weather_station_hi_c |
||||
units: '°F' |
||||
|
||||
humidity: |
||||
widget_type: gauge |
||||
title: "Humidity" |
||||
entity: sensor.sparkfun_weather_station_humidity_percent |
||||
units: "%" |
||||
min: 0 |
||||
max: 100 |
||||
|
||||
pressure: |
||||
widget_type: sensor |
||||
title: Pressure |
||||
entity: sensor.sparkfun_weather_station_pressure_pa |
||||
units: 'Pa' |
||||
|
||||
light: |
||||
widget_type: gauge |
||||
entity: sensor.sparkfun_weather_station_light_lvl_v |
||||
min: 0 |
||||
max: 10 |
||||
units: "V" |
||||
|
||||
light_value: |
||||
widget_type: sensor |
||||
title: Light Level |
||||
entity: sensor.sparkfun_weather_station_light_lvl_v |
||||
units: 'V' |
@ -0,0 +1,19 @@ |
||||
# Z-Wave Notes |
||||
|
||||
## Aeotec Z-Stick "Disco Lights" |
||||
|
||||
On/Off details [here](https://www.home-assistant.io/docs/z-wave/device-specific/#aeotec-z-stick) |
||||
|
||||
## Good Articles / Further Reading |
||||
|
||||
- [https://drzwave.blog/2017/01/20/seven-habits-of-highly-effective-z-wave-networks-for-consumers/](https://drzwave.blog/2017/01/20/seven-habits-of-highly-effective-z-wave-networks-for-consumers/) |
||||
|
||||
## Generating a network key |
||||
|
||||
From [https://www.home-assistant.io/docs/z-wave/adding/](https://www.home-assistant.io/docs/z-wave/adding/) |
||||
|
||||
``` bash |
||||
|
||||
cat /dev/urandom | tr -dc '0-9A-F' | fold -w 32 | head -n 1 | sed -e 's/\(..\)/0x\1, /g' -e 's/, $//' |
||||
|
||||
``` |
Loading…
Reference in new issue