WIP actions support
- Remappable double tap and hold buttons
- Confirmations on all custom actions
- Deprecating some touchpad fields in favor of adding
hold_action
anddouble_tap_action
to acenter
custom key. - Default actions are now persistent if not remapped in custom actions (you can add a hold or double tap action to a key and the default tap action will still work).
- Deprecating
custom_keys
andcustom_sources
in favor of onecustom_actions
field.
custom_keys:
light_color:
icon: mdi:lightbulb{{ "-outline" if is_state("light.sunroom_ceiling", "off") }}
style:
color: rgb({{ state_attr("light.sunroom_ceiling", "rgb_color") }}
tap_action:
action: call-service
service: light.turn_on
data:
entity_id: light.sunroom_ceiling
color_name: red
hold_action:
action: call-service
service: light.turn_on
data:
entity_id: light.sunroom_ceiling
color_name: blue
double_tap_action:
action: call-service
service: light.turn_on
data:
entity_id: light.sunroom_ceiling
color_name: green