IKEA Styrbar broken?

I just got a Styrbar remote and paired it with ZHA.
I get very few commands from the device.

This is “large sun” click:

{
    "event_type": "zha_event",
    "data": {
        "device_ieee": "b4:e3:f9:ff:fe:0c:06:4b",
        "unique_id": "b4:e3:f9:ff:fe:0c:06:4b:1:0x0006",
        "device_id": "76af6fdaa2160386fecfe18d1fde51a4",
        "endpoint_id": 1,
        "cluster_id": 6,
        "command": "on",
        "args": []
    },
    "origin": "LOCAL",
    "time_fired": "2021-12-07T14:21:24.157776+00:00",
    "context": {
        "id": "c941a3cc369f7c59c71d9e04bf8cdd8d",
        "parent_id": null,
        "user_id": null
    }
}

This is little sun click

{
    "event_type": "zha_event",
    "data": {
        "device_ieee": "b4:e3:f9:ff:fe:0c:06:4b",
        "unique_id": "b4:e3:f9:ff:fe:0c:06:4b:1:0x0006",
        "device_id": "76af6fdaa2160386fecfe18d1fde51a4",
        "endpoint_id": 1,
        "cluster_id": 6,
        "command": "off",
        "args": []
    },
    "origin": "LOCAL",
    "time_fired": "2021-12-07T14:23:42.974769+00:00",
    "context": {
        "id": "0a62e2587b75a436903626f0ac7c101d",
        "parent_id": null,
        "user_id": null
    }
}

So far so good…

Click on left and right arrow does nothing.
If I hold either left or right arrow I get:

{
    "event_type": "zha_event",
    "data": {
        "device_ieee": "b4:e3:f9:ff:fe:0c:06:4b",
        "unique_id": "b4:e3:f9:ff:fe:0c:06:4b:1:0x0006",
        "device_id": "76af6fdaa2160386fecfe18d1fde51a4",
        "endpoint_id": 1,
        "cluster_id": 6,
        "command": "on",
        "args": []
    },
    "origin": "LOCAL",
    "time_fired": "2021-12-07T14:24:31.933810+00:00",
    "context": {
        "id": "4c56901ff35c2a6c27ae3fc46b50a0fa",
        "parent_id": null,
        "user_id": null
    }
}

Surely these commands should be different? It’s the exact same message as large sun click.
And why is there no click actions?

This is my variable to track the button presses,
It’s a combination of command and arguments
You should be getting the values below.

Edit: If you are not, then I would guess a defective unit?

btn_action: >
    {% set btn_actions = { 
        'press_257_13_0'			: 'button_left_short',
        'hold_3329_0'				: 'button_left_long',
        'release_1365'				: 'button_left_release',
        'press_256_13_0'			: 'button_right_short',
        'hold_3328_0'				: 'button_right_long',
        'release_-27903'			: 'button_right_release',
        'on'						: 'button_up_short',
        'move_with_on_off_0_83'		: 'button_up_long',
        'stop'						: 'button_up_release',
        'off'						: 'button_down_short',
        'move_1_83'					: 'button_down_long',
        'stop'						: 'button_down_release'     
        }
    %}
    {{ btn_actions[trigger.event.data.command + ("_" if trigger.event.data.args|length > 0 else "") + trigger.event.data.args|join("_")]}}

1 Like

I do not see any of those commands…
I was expecting arguments to have something since that is what I get on my symfonisk remote.

Thanks.

Have you tried re-pairing your device? :slight_smile:

I have almost the same problem with the TRADFRI remote control (the old round one).

Dim up, dim down and toggle works perfect, but the left and right arrow doesn’t generate any zha_event anymore.

It did work earlier this year, so I tried a re-pairing, but it didn’t help.

Yes didn’t work.
It’s hard to get it to re-pair.
I hold the button for 10, 12, 20 seconds but it still does not go in to pairing mode.

Four clicks however does enter the pairing more.

I will see what IKEA says tomorrow.

I just got my new device but I still get incomplete messages.

Are you using ZHA integration?

Yes indeed I am, with a Sonoff Zbbridge running tasmota.

What are you using as your coordinator?

Conbee.
Perhaps this is the issue…

I tried updating the firmware to the latest version but it didn’t help.