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: Select input to timed output | |
| description: "" | |
| trigger: | |
| - platform: state | |
| id: button | |
| entity_id: | |
| - input_select.ztest_1_to_5 | |
| not_from: | |
| - unavailable | |
| - platform: event |
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
| trigger: | |
| - platform: event | |
| event_type: timer.finished | |
| event_data: | |
| entity_id: timer.pump | |
| condition: | |
| action: | |
| - variables: | |
| on_time: "00:15:00" | |
| off_time: "00:30:00" |
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
| #REPLY and BUTTONS ----------------------------- | |
| alias: Benj egg text | |
| description: "" | |
| trigger: | |
| - platform: time | |
| at: "07:30:00" | |
| condition: [] | |
| action: | |
| - alias: Set up variables for the actions | |
| variables: |
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
| ############################################################## | |
| # All-Day Events for Food Waste Collection | |
| # Collection every Wed from April 1 - Nov | |
| # Collection every other Wed Nov- Apr (skipping first week in Nov) | |
| # | |
| # Designed to be run annually on Apr 1 | |
| ############################################################# | |
| alias: Set Food Waste Calendar Dates |
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: test1 | |
| trigger: | |
| platform: state | |
| entity_id: | |
| - binary_sensor.driveway_beem | |
| to: 'on' | |
| condition: | |
| - condition: template | |
| value_template: '{{ (as_timestamp(now()) - as_timestamp(states.automation.driveway_linecrossing_mp3.attributes.last_triggered | default(0)) | int > 200)}}' | |
| action: |
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: Phone charging 78 | |
| description: "" | |
| trigger: | |
| - platform: numeric_state | |
| entity_id: sensor.pro_max_battery_level | |
| above: 78 | |
| condition: [] | |
| action: | |
| - service: switch.turn_off | |
| data: {} |
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: Lights - GE RF Pucks + Time | |
| description: "" | |
| trigger: | |
| - platform: event | |
| id: timer | |
| event_type: timer.finished | |
| event_data: | |
| entity_id: timer.ge_puck_light_timer | |
| - platform: state | |
| entity_id: light.ge_rf_puck_lights |
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: Low Battery Notification | |
| description: "" | |
| trigger: | |
| - platform: numeric_state | |
| entity_id: sensor.battery_level | |
| below: 1 | |
| value_template: "{{ state.state|int % 10 }}" | |
| condition: | |
| - condition: numeric_state | |
| entity_id: sensor.battery_level |
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
| ##################################################################### | |
| # This sensor relies on the feedparser custom component: | |
| # https://github.com/custom-components/feedparser | |
| ##################################################################### | |
| sensor: | |
| - platform: feedparser | |
| name: OED Word of the Day | |
| feed_url: "http://www.oed.com/rss/wordoftheday" | |
| date_format: "%a, %b %d %H:%M:%S %z" |
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
| ##################################################################### | |
| # This sensor relies on the feedparser custom component: | |
| # https://github.com/custom-components/feedparser | |
| ##################################################################### | |
| sensor: | |
| - platform: feedparser | |
| name: Free Dictionary Spanish WOD | |
| feed_url: "https://es.thefreedictionary.com/_/WoD/rss.aspx?type=es_wod" | |
| scan_interval: |