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

OSRAM AC025XX00NJ / Philips 8718699693985: fix and update #615

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
Updated actions_mapping for Zigbee2MQTT
  • Loading branch information
alexdelprete authored Sep 15, 2024
commit f86b5090b988a2186976d6c0933e17da29e57108
19 changes: 10 additions & 9 deletions blueprints/controllers/osram_ac025xx00nj/osram_ac025xx00nj.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -264,15 +264,16 @@ variables:
button_down_long: [move]
button_down_release: [stop]
zigbee2mqtt:
button_up_short: [up]
button_up_long: [up_hold]
button_up_release: [up_release]
button_center_short: [circle_click]
button_center_long: [circle_hold]
button_center_release: [circle_release]
button_down_short: [down]
button_down_long: [down_hold]
button_down_release: [down_release]
# source: https://www.zigbee2mqtt.io/devices/AC0251100NJ_AC0251600NJ_AC0251700NJ.html#actions
button_up_short: ['on']
button_up_long: [brightness_move_up]
button_up_release: [brightness_stop]
button_center_short: [brightness_move_to_level]
button_center_long: [move_to_saturation]
button_center_release: [hue_stop]
button_down_short: ['off']
button_down_long: [brightness_move_down]
button_down_release: [brightness_stop]
# pre-choose actions for buttons based on configured integration
# no need to perform this task at automation runtime
button_up_short: '{{ actions_mapping[integration_id]["button_up_short"] }}'
Expand Down