Hi,
I’ve configured this knob blueprint Zigbee2MQTT Tuya Moes Smart Knob (ERS-10TZBVK-AA) to call media_player methods on button press and rotate left/right as follows
use_blueprint:
path: rdeangel/zigbee2mqtt-tuya-moes-smart-knob-ers-10tzbvk-aa.yaml
input:
switch: sensor.mando_circular_action
button_rotate_right:
- service: media_player.volume_up
data: {}
target:
entity_id: media_player.altavoces_despacho
button_rotate_left:
- service: media_player.volume_down
data: {}
target:
entity_id: media_player.altavoces_despacho
button_short_press:
- service: media_player.media_pause
data: {}
target:
entity_id: media_player.altavoces_despacho
button_double_press:
- service: media_player.media_play
data: {}
target:
entity_id: media_player.altavoces_despacho
button_long_press:
- service: media_player.media_play
data: {}
target:
entity_id: media_player.altavoces_despacho
If i check on traces i can see that the event is properly captured and routed as expedted to call the desired service method in near real time, but it almost never actually does play/pause/volup/voldown… and when it does, it happens with a couple of secs of delay.
If i manipulate this entity media_player.altavoces_despacho through the media card in lovelace, it works flawlessly with 0 delay.
This entity is a pair of Google Nest speakers setup through Google Cast integration.
How can i debug further to find out where’s the issue??
Kind regards,