Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IKEA_e2001_e2002 - Remove condition to check which button was released to trigger releas… #584

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions blueprints/controllers/ikea_e2001_e2002/ikea_e2001_e2002.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,6 @@ action:
default: !input action_button_left_long
- conditions:
- '{{ trigger_action | string in button_left_release }}'
# for integrations which need to store the last controller event, need to check the previous button event, stored in the provided input_text
- '{{ not integration_id in integrations_with_prev_event_storage or last_controller_event | string in button_left_long }}'
sequence:
# fire the event
- event: ahb_controller_event
Expand Down Expand Up @@ -566,8 +564,6 @@ action:
default: !input action_button_right_long
- conditions:
- '{{ trigger_action | string in button_right_release }}'
# for integrations which need to store the last controller event, need to check the previous button event, stored in the provided input_text
- '{{ not integration_id in integrations_with_prev_event_storage or last_controller_event | string in button_right_long }}'
sequence:
# fire the event
- event: ahb_controller_event
Expand Down Expand Up @@ -649,8 +645,6 @@ action:
default: !input action_button_up_long
- conditions:
- '{{ trigger_action | string in button_up_release }}'
# for integrations which need to store the last controller event, need to check the previous button event, stored in the provided input_text
- '{{ not integration_id in integrations_with_prev_event_storage or last_controller_event | string in button_up_long }}'
sequence:
# fire the event
- event: ahb_controller_event
Expand Down Expand Up @@ -732,8 +726,6 @@ action:
default: !input action_button_down_long
- conditions:
- '{{ trigger_action | string in button_down_release }}'
# for integrations which need to store the last controller event, need to check the previous button event, stored in the provided input_text
- '{{ not integration_id in integrations_with_prev_event_storage or last_controller_event | string in button_down_long }}'
sequence:
# fire the event
- event: ahb_controller_event
Expand Down
Loading