- 180 https://www.home-assistant.io/hassio/installation
- 158 https://www.home-assistant.io/developers/credits
- 135 https://www.home-assistant.io/getting-started/index
- 79 https://www.home-assistant.io/help/index
- 78 https://www.home-assistant.io/docs/z-wave/installation
- 75 https://www.home-assistant.io/docs/automation/trigger
- 66 https://www.home-assistant.io/docs/mqtt/discovery
- 65 https://www.home-assistant.io/docs/configuration/templating
- 64 https://www.home-assistant.io/getting-started/configuration
- 63 https://www.home-assistant.io/docs/installation/docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
binary_sensor: | |
- platform: template | |
sensors: | |
boiler_is_operating_normally: | |
value_template: "{{ states('sensor.bw_shp8_boiler_power') | int > 1 }}" | |
utility_meter: | |
hourly_energy_boiler: | |
source: sensor.bw_shp8_boiler_total_daily_energy | |
cycle: hourly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
timer: | |
toilet: | |
automation: | |
- alias: Turn on light in the toilet by aqara sensor motion | |
trigger: | |
platform: mqtt | |
topic: zigbee2mqtt/0x00158d0004518e15 | |
condition: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"illumination": { | |
"gain": "8.0", | |
"gain-factor": "81.4684", | |
"gain-ratio": "81.4684", | |
"exposure": "0.0499748", | |
"sufficientIllumination": "false" | |
}, | |
"sensor-tilt": { | |
"enabled": "true", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input_number: | |
water_counter: | |
min: 0 | |
max: 100000000 | |
step: 10 | |
unit_of_measurement: liter | |
icon: mdi:water | |
current_water_counter: | |
mode: box |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input_boolean: | |
one: | |
input_text: | |
status: | |
automation: | |
trigger: | |
platform: state | |
entity_id: input_boolean.one |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sensor: | |
- platform: template | |
sensors: | |
total_energy_pump: | |
unit_of_measurement: kWh | |
value_template: "{{ state_attr('sensor.0x842e14fffe1393a2_power', 'energy') }}" | |
utility_meter: | |
hourly_energy_pump: | |
source: sensor.total_energy_pump |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sensor: | |
- platform: template | |
sensors: | |
total_energy_heating_cable: | |
unit_of_measurement: kWh | |
value_template: "{{ state_attr('sensor.0x842e14fffe139880_power', 'energy') }}" | |
binary_sensor: | |
- platform: template | |
sensors: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings FATAL => 'all'; | |
use feature 'say'; | |
use utf8; | |
use open qw(:std :utf8); | |
sub main { |