diff --git a/configuration.yaml b/configuration.yaml index a0a341d..4da65b8 100644 --- a/configuration.yaml +++ b/configuration.yaml @@ -33,6 +33,7 @@ sensor: !include_dir_merge_list sensors switch: !include_dir_merge_list switches light: !include_dir_merge_list lights automation: !include_dir_merge_list automations +scene: !include_dir_merge_list scenes hacs: sidepanel_title: Hacs Store diff --git a/scenes/bright_pleasant_light.yaml b/scenes/bright_pleasant_light.yaml new file mode 100644 index 0000000..c2a4e5b --- /dev/null +++ b/scenes/bright_pleasant_light.yaml @@ -0,0 +1,9 @@ +- name: Bright and Pleasant + entities: + light.fenster_lampen: + state: on + brightness: 255 + xy_color: + - 0.443 + - 0.379 + diff --git a/scenes/colorful_lights.yaml b/scenes/colorful_lights.yaml new file mode 100644 index 0000000..07853d9 --- /dev/null +++ b/scenes/colorful_lights.yaml @@ -0,0 +1,28 @@ +- name: Green & Pink + entities: + light.0xec1bbdfffe9cc96e_light: + state: on + brightness: 255 + xy_color: + - 0.46 + - 0.195 + light.0xec1bbdfffe59b929_light: + state: on + brightness: 255 + xy_color: + - 0.172 + - 0.747 +- name: Red & Blue + entities: + light.0xec1bbdfffe9cc96e_light: + state: on + brightness: 255 + xy_color: + - 0.136 + - 0.04 + light.0xec1bbdfffe59b929_light: + state: on + brightness: 255 + xy_color: + - 0.701 + - 0.299 diff --git a/sensors/sensors.yaml b/sensors/sensors.yaml index 4ab6b17..b5e67c0 100644 --- a/sensors/sensors.yaml +++ b/sensors/sensors.yaml @@ -17,14 +17,3 @@ - platform: command_line name: Python Version command: "python3 --version" - -- platform: command_line - command: "curl cypher/matemeter/api.php" - name: remaining_bottles - value_template: "{{value_json.remaining_bottles}}" - json_attributes: - - total_bottles_refilled - - total_bottles_sold - - remaining_bottles - scan_interval: 20 - command_timeout: 30