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: Get Shopping list item | |
| sequence: | |
| - action: todo.get_items | |
| target: | |
| entity_id: | |
| - todo.listes_des_courses | |
| response_variable: result | |
| data: | |
| status: needs_action | |
| - stop: "" |
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
| substitutions: | |
| # Phases of the Voice Assistant | |
| # The voice assistant is ready to be triggered by a wake word | |
| voice_assist_idle_phase_id: '1' | |
| # The voice assistant is waiting for a voice command (after being triggered by the wake word) | |
| voice_assist_waiting_for_command_phase_id: '2' | |
| # The voice assistant is listening for a voice command | |
| voice_assist_listening_for_command_phase_id: '3' | |
| # The voice assistant is currently processing the command | |
| voice_assist_thinking_phase_id: '4' |
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: custom:mushroom-template-card | |
| primary: HAL | |
| secondary: |- | |
| {% if is_state('binary_sensor.hal_assist_en_cours','on') %} | |
| En écoute ... | |
| {% elif is_state('switch.hal_use_wake_word','on') %} | |
| Activé | |
| {% else %} | |
| Desactivé | |
| {% endif %} |
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: Réveil intelligent - Démarrer la Musique | |
| description: "" | |
| trigger: | |
| - platform: time | |
| at: input_datetime.wake_up_time | |
| condition: | |
| - condition: state | |
| entity_id: input_boolean.automation_wake_up | |
| state: "on" | |
| - condition: state |
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: Bureau - Standing Desk Autonome | |
| description: "" | |
| trigger: | |
| - platform: time_pattern | |
| minutes: "25" | |
| - platform: time_pattern | |
| minutes: "55" | |
| condition: | |
| - condition: state | |
| entity_id: input_boolean.automation_meetings |
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
| You are an AI process that transforms a music search query into a structured JSON. | |
| Here is the structured JSON that I expect in response {"media_id":"name", "media_type":"type", "artist":"name", "album":"name"} | |
| "media_type" can be one of 3 different values: "track" if the search is about a specific track, "album" if the search is about an album, or "artist" if the search is about an artist. | |
| media_type is mandatory | |
| media_id is the most specific from track, album, and artist. | |
| If the search is about a track: Then media_id is the track name. | |
| If the search is about an album: Then media_id is the album name. |
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: horizontal-stack | |
| cards: | |
| - type: custom:mushroom-template-card | |
| primary: JL | |
| secondary: |- | |
| {% if is_state("person.person_1", "home") -%} | |
| Présent | |
| {%- elif is_state("person.person_1", "not_home") -%} | |
| {{ state_attr("sensor.person_1_android_geocoded_location", "locality") }}{% if not is_state_attr("sensor.person_1_android_geocoded_location", "iso_country_code", "FR") %} - {{ state_attr("sensor.person_1_android_geocoded_location", "country") }}{%- endif %} | |
| {%- else -%} |
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: Flash Ceiling lights Red | |
| sequence: | |
| - service: scene.create | |
| data: | |
| scene_id: previous_ceiling_lights_state | |
| snapshot_entities: | |
| - light.ceiling_lights | |
| - service: light.turn_on | |
| data: | |
| rgb_color: |
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
| template: | |
| - sensor: | |
| - name: pending_updates | |
| unique_id: pending_updates | |
| state: | | |
| {{ | |
| expand(states.update) | |
| | selectattr('state', 'eq', 'on') | |
| | list | |
| | count |
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: Raise The Desk | |
| trigger: | |
| - platform: conversation | |
| command: raise the desk | |
| action: | |
| - service: button.press | |
| target: | |
| entity_id: button.standing_desk_move_desk_to_position_1 | |
| mode: single |
NewerOlder