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
- alias: count tv shows | |
trigger: | |
- entity_id: media_player.android_tv | |
platform: state | |
to: playing | |
action: | |
- delay: 00:06:00 | |
- condition: state | |
entity_id: media_player.android_tv |
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
script: | |
vacuum_zones_erdgeschoss: | |
alias: "Erdgeschoss Zonen saugen" | |
sequence: | |
- service: vacuum.send_command | |
data_template: | |
entity_id: 'vacuum.rockrobo' | |
command: 'zoned_cleanup' | |
params: | |
'zone_ids': |
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
type: picture-elements | |
image: /local/floorplan.jpg | |
elements: | |
- camera_image: camera.rockrobo_map | |
camera_view: camera.rockrobo_map | |
entity: camera.rockrobo_map | |
style: | |
left: '-63%' | |
opacity: 0.5 | |
top: 8% |
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
vicare_heatcurve_target_temperature: | |
friendly_name: "Vorlauftemperatur nach Heizkurve" | |
unit_of_measurement: '°C' | |
value_template: "{{ state_attr('climate.vicare_heating', 'temperature') + state_attr('climate.vicare_heating', 'heating_curve_shift') - state_attr('climate.vicare_heating', 'heating_curve_slope') * (state_attr('climate.vicare_heating', 'outside_temperature') - state_attr('climate.vicare_heating', 'temperature')) * (1.4347 + 0.021 * (state_attr('climate.vicare_heating', 'outside_temperature') - state_attr('climate.vicare_heating', 'temperature')) + 247.9 * 0.000001 * (state_attr('climate.vicare_heating', 'outside_temperature') - state_attr('climate.vicare_heating', 'temperature')) * (state_attr('climate.vicare_heating', 'outside_temperature') - state_attr('climate.vicare_heating', 'temperature'))) }}" |
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
vicare_circulationpump_active: | |
friendly_name: "Zirkulationspumpe aktiv" | |
value_template: "{{ state_attr('climate.vicare_heating', 'circulationpump_active') }}" |
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
vicare_outside_temperature: | |
friendly_name: "Aussentemperatur" | |
unit_of_measurement: '°C' | |
value_template: "{{ state_attr('climate.vicare_heating', 'outside_temperature') }}" | |
vicare_desired_temperature: | |
friendly_name: "Zieltemperatur" | |
unit_of_measurement: '°C' | |
value_template: "{{ state_attr('climate.vicare_heating', 'temperature') }}" |
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
automation: | |
- id: 'mailbox_notification' | |
alias: You have mail | |
trigger: | |
- entity_id: sensor.0x00158d000313108a_action | |
platform: state | |
to: 'vibration' | |
condition: # Trying to prevent more than a single trigger every 20 seconds | |
- condition: template | |
value_template: '{{ as_timestamp(now()) - as_timestamp(states.automation.mailbox_notification.attributes.last_triggered) | int > 20 }}' |