Compare commits
2 Commits
c8cdade85c
...
2b925109ef
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b925109ef | |||
| 2a63241c72 |
@@ -1 +1 @@
|
|||||||
2025.9.3
|
2025.10.4
|
||||||
1
.ha_run.lock
Normal file
1
.ha_run.lock
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"pid": 66, "version": 1, "ha_version": "2025.10.4", "start_ts": 1762128658.853587}
|
||||||
@@ -270,8 +270,8 @@
|
|||||||
trigger: device
|
trigger: device
|
||||||
for:
|
for:
|
||||||
hours: 0
|
hours: 0
|
||||||
minutes: 1
|
minutes: 0
|
||||||
seconds: 0
|
seconds: 48
|
||||||
conditions: []
|
conditions: []
|
||||||
actions:
|
actions:
|
||||||
- action: input_boolean.turn_off
|
- action: input_boolean.turn_off
|
||||||
|
|||||||
63
blueprints/automation/homeassistant/copy_entity_state.yaml
Normal file
63
blueprints/automation/homeassistant/copy_entity_state.yaml
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
blueprint:
|
||||||
|
name: copy-light-entity-state
|
||||||
|
description: Copy state from light entity to light entity
|
||||||
|
domain: automation
|
||||||
|
author: Tiziano Trabattoni
|
||||||
|
input:
|
||||||
|
source_entity:
|
||||||
|
name: Source Entity
|
||||||
|
description: Entity to copy state from
|
||||||
|
selector:
|
||||||
|
target:
|
||||||
|
entity:
|
||||||
|
domain: light
|
||||||
|
destination_entity:
|
||||||
|
name: Destination Entity
|
||||||
|
description: Entity to copy state to
|
||||||
|
selector:
|
||||||
|
target:
|
||||||
|
entity:
|
||||||
|
domain: light
|
||||||
|
|
||||||
|
mode: queued
|
||||||
|
max_exceeded: silent
|
||||||
|
|
||||||
|
variables:
|
||||||
|
src_entity: !input source_entity
|
||||||
|
dest_entity: !input destination_entity
|
||||||
|
|
||||||
|
triggers:
|
||||||
|
- trigger: state
|
||||||
|
entity_id: !input source_entity
|
||||||
|
from: "off"
|
||||||
|
to: "on"
|
||||||
|
id: turn-light-on
|
||||||
|
- trigger: state
|
||||||
|
entity_id: !input source_entity
|
||||||
|
from: "on"
|
||||||
|
to: "off"
|
||||||
|
id: turn-light-off
|
||||||
|
|
||||||
|
conditions: []
|
||||||
|
|
||||||
|
actions:
|
||||||
|
- choose:
|
||||||
|
- conditions:
|
||||||
|
- condition: trigger
|
||||||
|
id:
|
||||||
|
- turn-light-on
|
||||||
|
sequence:
|
||||||
|
- action: light.turn_on
|
||||||
|
target: !input destination_entity
|
||||||
|
data:
|
||||||
|
brightness_pct: 100
|
||||||
|
|
||||||
|
- conditions:
|
||||||
|
- condition: trigger
|
||||||
|
id:
|
||||||
|
- turn-light-off
|
||||||
|
sequence:
|
||||||
|
- action: light.turn_off
|
||||||
|
target: !input destination_entity
|
||||||
|
data:
|
||||||
|
brightness_pct: 0
|
||||||
@@ -8,6 +8,8 @@ homeassistant:
|
|||||||
# Load frontend themes from the themes folder
|
# Load frontend themes from the themes folder
|
||||||
frontend:
|
frontend:
|
||||||
themes: !include_dir_merge_named themes
|
themes: !include_dir_merge_named themes
|
||||||
|
extra_module_url:
|
||||||
|
- /local/community/kiosk-mode/kiosk-mode.js
|
||||||
|
|
||||||
# Inclusions
|
# Inclusions
|
||||||
automation: !include automations.yaml
|
automation: !include automations.yaml
|
||||||
@@ -150,3 +152,5 @@ lovelace:
|
|||||||
type: module
|
type: module
|
||||||
- url: /hacsfiles/Bubble-Card/bubble-card.js
|
- url: /hacsfiles/Bubble-Card/bubble-card.js
|
||||||
type: module
|
type: module
|
||||||
|
- url: /local/community/kiosk-mode/kiosk-mode.js
|
||||||
|
type: module
|
||||||
|
|||||||
Reference in New Issue
Block a user