This file contains 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 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 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 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 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 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 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 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 |
This file contains 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: entities | |
entities: | |
- type: button | |
icon: mdi:format-list-bulleted-type | |
name: Journal | |
action_name: NAVIGER | |
tap_action: | |
action: navigate | |
navigation_path: /logbook | |
- type: button |
NewerOlder