when i saw this device under blueprints i was more than happy it was at least usable for a beginner like me but i got it linked through deconz.
it would be nice someone to point how to adapt it to work with deconz or to get a deconz version of this blueprint.
thanks in advance.
this is my 1st message and i never thought of getting so far with home assistant just following tutorials, posts, etc. but no videos at all. it would have not been possible without your contributions. thank you all
Iāve adapted it for Deconz, but I get a double event fired for each button press.
I think the double triggers are a problem with deconz and this device. If anybody knows better, please let me know.
Hereās what I changed:
blueprint:
name: deCONZ - LoraTap Tuya TS0044 4 button remote
description: Automate your LoraTap Tuya TS0044 4 button remote using deCONZ events.
domain: automation
input:
loratap_tuya_ts0044:
name: Tuya TS0044 4 button remote
description: Tuya TS0043 4 button remote to use
selector:
device:
integration: deconz
manufacturer: _TZ3000_vp6clf9d
model: TS0044
button_one_long_press:
name: Button 1 (long press)
description: Action to run on button 1 long press
default: []
selector:
action: {}
button_one_single_press:
name: Button 1 (single press)
description: Action to run on button 1 single press
default: []
selector:
action: {}
button_one_double_press:
name: Button 1 (double press)
description: Action to run on button 1 double press
default: []
selector:
action: {}
button_two_long_press:
name: Button 2 (long press)
description: Action to run on button 2 long press
default: []
selector:
action: {}
button_two_single_press:
name: Button 2 (single press)
description: Action to run on button 2 single press
default: []
selector:
action: {}
button_two_double_press:
name: Button 2 (double press)
description: Action to run on button 2 double press
default: []
selector:
action: {}
button_three_long_press:
name: Button 3 (long press)
description: Action to run on button 3 long press
default: []
selector:
action: {}
button_three_single_press:
name: Button 3 (single press)
description: Action to run on button 3 single press
default: []
selector:
action: {}
button_three_double_press:
name: Button 3 (double press)
description: Action to run on button 3 double press
default: []
selector:
action: {}
button_four_long_press:
name: Button 4 (long press)
description: Action to run on button 4 long press
default: []
selector:
action: {}
button_four_single_press:
name: Button 4 (single press)
description: Action to run on button 4 single press
default: []
selector:
action: {}
button_four_double_press:
name: Button 4 (double press)
description: Action to run on button 4 double press
default: []
selector:
action: {}
source_url: https://community.home-assistant.io/t/deconz-loratap-tuya-ts0043-3-button-remote/268690
mode: restart
max_exceeded: silent
trigger:
- platform: event
event_type: deconz_event
event_data:
device_id: !input 'loratap_tuya_ts0044'
action:
- variables:
event: '{{ trigger.event.data.event }}'
- choose:
- conditions:
- '{{ event == 1003 }}'
sequence: !input 'button_one_long_press'
- conditions:
- '{{ event == 1002 }}'
sequence: !input 'button_one_single_press'
- conditions:
- '{{ event == 1004 }}'
sequence: !input 'button_one_double_press'
- conditions:
- '{{ event == 2003 }}'
sequence: !input 'button_two_long_press'
- conditions:
- '{{ event == 2002 }}'
sequence: !input 'button_two_single_press'
- conditions:
- '{{ event == 2004 }}'
sequence: !input 'button_two_double_press'
- conditions:
- '{{ event == 3003 }}'
sequence: !input 'button_three_long_press'
- conditions:
- '{{ event == 3002 }}'
sequence: !input 'button_three_single_press'
- conditions:
- '{{ event == 3004 }}'
sequence: !input 'button_three_double_press'
- conditions:
- '{{ event == 4003 }}'
sequence: !input 'button_four_long_press'
- conditions:
- '{{ event == 4002 }}'
sequence: !input 'button_four_single_press'
- conditions:
- '{{ event == 4004 }}'
sequence: !input 'button_four_double_press'
Thanks I figured that out the other day. I long pressed everything before that not thinking that it would be for ten seconds. Either way its up and running and my new favorite button
Thanks for the blueprint and I got it working in version ā2021.2.3ā. Iām wondering if I can get LEDs to light up based on a condition. For example if my water heater is turned on. Any idea?
Your use case has nothing to do with the switch or this blueprint. You need to create a separate automation for that within HA, either using the native automation (UI or YAML) or via node-red.
Anyone have pointers for debugging my installation of this? Iāve got one of these switches connected and ZHA says itās connected and is reporting the battery level. Initially my switch wasnāt showing up, but when I updated the manufacturer to _TZ3000_xabckq1v and the model to TS004F I was able to make an automation and select my device. To start out I tried a call service to a switch that I often use and it doesnāt seem to work.
Are there any events I can monitor to see whatās going on? Other devices connected to ZHA seem to work. Was changing the manufacturer and model not a good idea?