perhaps I’m doing something wrong but I’m running HA 0.85.1 on my RPi3b+ (running raspbian and docker).
I have a simple automation to report action_type and action_value (if any) using following code:
alias: Aqara Cube Living
trigger:
- platform: event
event_type: xiaomi_aqara.cube_action
event_data:
entity_id: binary_sensor.aqara_cube_living
action:
- service: telegram_bot.send_message
data_template:
parse_mode: 'html'
message: >
{{ trigger.event.data['action_type'] }}, {{ trigger.event.data['action_value'] }}
Weird thing is that I receive every action three times:
HA, [21.01.19 15:10]
tap_twice,
HA, [21.01.19 15:10]
tap_twice,
HA, [21.01.19 15:10]
tap_twice,
HA, [21.01.19 15:10]
flip90,
HA, [21.01.19 15:10]
flip90,
HA, [21.01.19 15:10]
flip90,
HA, [21.01.19 15:10]
flip180,
HA, [21.01.19 15:10]
flip180,
HA, [21.01.19 15:10]
flip180,
HA, [21.01.19 15:11]
rotate, -55.5
HA, [21.01.19 15:11]
rotate, -55.5
HA, [21.01.19 15:11]
rotate, -55.5
HA, [21.01.19 15:11]
shake_air,
HA, [21.01.19 15:11]
shake_air,
HA, [21.01.19 15:11]
shake_air,
HA, [21.01.19 15:12]
alert,
HA, [21.01.19 15:12]
alert,
HA, [21.01.19 15:12]
alert,
HA, [21.01.19 15:12]
rotate, 23.5
HA, [21.01.19 15:12]
rotate, 23.5
HA, [21.01.19 15:12]
rotate, 23.5
HA, [21.01.19 15:13]
rotate, -34.5
HA, [21.01.19 15:13]
rotate, -34.5
HA, [21.01.19 15:13]
rotate, -34.5
Anyone else experiencing this? Bug?