Hi,
first I must thank you for your AWESOME blueprints
Unfortunately issue persist also in 2022.4.2.
It seems to me the issue raised since zha_events in 2022.4.0 - 2022.4.2 have changed;
- āargsā section have two additional zeroes
- there is also āparamsā section.
Here you can see new zha_event format for right rotation:
Event 138 fired 23:03:
{
"event_type": "zha_event",
"data": {
"device_ieee": "ec:1b:bd:ff:fe:39:63:da",
"unique_id": "ec:1b:bd:ff:fe:39:63:da:1:0x0008",
"device_id": "a6e2928ee51d31c25e7afa6d1f55dbc9",
"endpoint_id": 1,
"cluster_id": 8,
"command": "move",
"args": [
0,
195,
0,
0
],
"params": {
"move_mode": 0,
"rate": 195,
"options_mask": 0,
"options_override": 0
}
},
"origin": "LOCAL",
"time_fired": "2022-04-12T21:03:00.224206+00:00",
"context": {
"id": "ad76032c18e711ee9757881b8ad66973",
"parent_id": null,
"user_id": null
}
}
I tried to do some debugging but I donāt have enough knowledge to do it.
I checked automation traces and I found one strange thing - trigger_action
has strange value I would expect something like move_0_195_0_0
I donāt understand why&where from this value move_MoveMode.Up_195_bitmap8.0_bitmap8.0
comes.
Executed: April 12, 2022, 23:03:00
Result:
params:
domain: input_text
service: set_value
service_data:
entity_id: input_text.text_symfonisk1
value:
trigger_action: move_MoveMode.Up_195_bitmap8.0_bitmap8.0
last_triggered: '2022-04-12 23:03:00.351792+02:00'
target: {}
running_script: false
limit: 10
This is also the case for āleft rotationā and ārotation stopā
Executed: April 12, 2022, 23:17:59
Result:
params:
domain: input_text
service: set_value
service_data:
entity_id: input_text.text_symfonisk1
value:
trigger_action: move_MoveMode.Down_195_bitmap8.0_bitmap8.0
last_triggered: '2022-04-12 23:17:59.891456+02:00'
target: {}
running_script: false
limit: 10
service_data:
entity_id: input_text.text_symfonisk1
value:
trigger_action: stop_bitmap8.0_bitmap8.0
last_triggered: '2022-04-12 23:03:02.071231+02:00'
target: {}
Because these trigger_actions
are different as expected the blueprint conditions are not met.
I hope this info will help you do some more debugging.