-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ikea Styrbar remote not working anymore after upgrade to newest 2.4.5 #15725
Comments
The batters 255 is one undocumented future (= Bug) in the new firmware. |
Thanks for that information. |
I have not testing downgrading Syrbar but all first and second gen controller is blocked in the firmware for doing it and the original firmware was having the same settings if reading the certificate papers (the new is not posted as of today). |
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days |
I confirm that most recent (2.4.5) firmware completely broke support for Styrbar remotes. |
@sstrutyn Non I don't know how to proceed to downgrade. If someone can provide an how-to, I'll be glad to test it. |
I can also confirm that my both Syrbar remotes running 2.4.5 are not working in both of my setups. Running 2 Zigbee2MQTT instances with versions 1.30.1 (https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.30.1) |
For me, manually pairing the remote with any bulb (using the button on the back) and then adding it to Z2MQTT got the remote on firmware v2.4.5 working again. |
So what you did was:
Can you then unpair the Bulb again and the remote still works? Can the remote control other lights through Z2MQTT? I'd like to test this. |
That is exactly what I did @Freeswiss. After this procedure the remote should start working as usual, so you are able to unbind it from the bulb and configure everything through Z2MQTT. |
I am experiencing the same problem with a remote that has been upgraded to firmware 2.4.5 by the tradfri hub. It seems the diff --git a/devices/ikea.js b/devices/ikea.js
index 7a4f3cdd..e2a2a9ca 100644
--- a/devices/ikea.js
+++ b/devices/ikea.js
@@ -650,7 +650,7 @@ module.exports = [
configure: async (device, coordinatorEndpoint, logger) => {
// Binding genOnOff is not required to make device send events.
const endpoint = device.getEndpoint(1);
- await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg']);
+ await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg', 'genOnOff']);
await reporting.batteryPercentageRemaining(endpoint);
},
}, |
Could you check if the issue is fixed with the following external converter: const fz = require('zigbee-herdsman-converters/converters/fromZigbee');
const tz = require('zigbee-herdsman-converters/converters/toZigbee');
const exposes = require('zigbee-herdsman-converters/lib/exposes');
const reporting = require('zigbee-herdsman-converters/lib/reporting');
const extend = require('zigbee-herdsman-converters/lib/extend');
const ota = require('zigbee-herdsman-converters/lib/ota');
const tuya = require('zigbee-herdsman-converters/lib/tuya');
const utils = require('zigbee-herdsman-converters/lib/utils');
const globalStore = require('zigbee-herdsman-converters/lib/store');
const e = exposes.presets;
const ea = exposes.access;
const definition = {
zigbeeModel: ['Remote Control N2'],
model: 'E2001/E2002',
vendor: 'IKEA',
description: 'STYRBAR remote control',
fromZigbee: [fz.battery, fz.command_off, fz.command_move, fz.command_stop],
exposes: [e.battery().withAccess(ea.STATE_GET), e.action(['on', 'off', 'brightness_move_up', 'brightness_move_down',
'brightness_stop', 'arrow_left_click', 'arrow_right_click', 'arrow_left_hold',
'arrow_right_hold', 'arrow_left_release', 'arrow_right_release'])],
toZigbee: [tz.battery_percentage_remaining],
ota: ota.tradfri,
meta: {battery: {dontDividePercentage: true}},
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.getEndpoint(1);
const version = device.softwareBuildID.split('.').map((n) => Number(n));
// https://github.com/Koenkk/zigbee2mqtt/issues/15725
const v245OrLater = version[0] > 2 || (version[0] == 2 && version[1] >= 4);
const binds = v245OrLater ? ['genPowerCfg', 'genOnOff'] : ['genPowerCfg'];
await reporting.bind(endpoint, coordinatorEndpoint, binds);
await reporting.batteryPercentageRemaining(endpoint);
},
};
module.exports = definition;
external_converters:
- ext_converter.js
|
Tried the external Converter. z2mqtt crashes. Log: [18:56:46] INFO: Preparing to start... |
Updated #15725 (comment), after this only on/off actions will works (but this is just to see if it works at all) |
Hi,
Thanks. It start to works :-)
With this external converter :
Firmware v2.4.5 -> "Off" command working after pairing. "ON" do NOT work.
Default pairing show those link : PowerCfg, GenPollCtrl AND OnOff. After
adding "LevelCtrl" link to coordinator, "brightness_move_up",
"brightness_move_down" and "brithness_stop" are working. Battery is
showing 255%.
Firmware v1.0.24 -> "Off", "Brightness_move_up", "Brightness_move_down" and
"brigthness_stop" works directly after pairing. "ON" do NOT work. Default
pairing show only PowerCfg and GenPollCtrl. No OnOff and No LevelCtrl by
default. Battery is showing correctly value less than 100%
Hope this helps.
Le lun. 13 févr. 2023 à 19:29, Koen Kanters ***@***.***> a
écrit :
… Updated #15725 (comment)
<#15725 (comment)>,
after this only on/off actions will works (but this is just to see if it
works at all)
—
Reply to this email directly, view it on GitHub
<#15725 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AM5I3MHQ4RMSTXABPZXNWO3WXJ4O3ANCNFSM6AAAAAATIDTUL4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@rdu70 does the |
@Koenkk Yes just tried now : v1.0.24 work correctly without anything after pairing (I'm running zigbee2mqtt v1.30.1). In the bind section, only genPollCtrl and PwrCfg are selected (it's the default) and all functions works. Note that the "scenes" option does not appear in the binding list. v2.5.4 -> if pairing without external converter, it pair but nothing works. Binding only show the same 2 selected : genPollCtrl and PwrCfg and it's NOT possible to add other binding (binding fails). v2.5.4 -> if pairing WITH external converter, it pair AND 'off' works. Binding show 3 binds by default (genPollCtrl, PwrCfg AND OnOff). I'm able to add 2 other binding : LevelCtrl and Scene. After that, all functions works EXCEPT "ON". Then, I REMOVE the external converter, and everything works fine. It seems that the v2.5.4 version needs the 3 more bindings (OnOff, LevelCtrl and Scenes) but they are not selected by default and without external converter it's not possible to do the binding (as this need to have a button pushed just after requesing the bind to wake up the remote). In any cases, v2.5.4 does not repport the battery level correctly (show 255%) Hope that helps |
See https://www.zigbee2mqtt.io/guide/usage/debug.html on how to enable debug logging. Changes will be available in the dev branch in a few hours from now. (https://www.zigbee2mqtt.io/advanced/more/switch-to-dev-branch.html) |
Confirming that the docker image |
Confirm also that With 2.4.5, the battery now report 127.5 v1.0.24 -> Battery 90% v2.4.5 -> Battery 127.5% Full log below. 0x38xxx device is 2.4.5 and 0x84xxx is 1.0.24 info 2023-02-19 22:20:13: Starting Zigbee2MQTT version 1.30.1-dev (commit #7fa2b5f) info 2023-02-19 22:20:15: Coordinator firmware version: '{"meta":{"maintrel":1,"majorrel":2,"minorrel":7,"product":1,"revision":20210708,"transportrev":2},"type":"zStack3x0"}' info 2023-02-19 22:21:04: Zigbee: allowing new devices to join. info 2023-02-19 22:25:11: Device '0x385b44fffe38ba50' joined info 2023-02-19 22:27:54: Device '0x84ba20fffef7d3b6' joined debug 2023-02-19 22:29:23: Received Zigbee message from '0x385b44fffe38ba50', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":1,"fileVersion":33816581,"imageType":4555,"manufacturerCode":4476}' from endpoint 1 with groupID 0 |
Since we already have a separate IKEA convertor for battery, should we just reject invalid 255 battery readings or maybe map them to 100% , I guess we need a bit more data to see if there are any batteryPercentageRemaining values > 200 except 255 which is probably invalid as it's the MAX value that field type supports. |
@sjorge I have the same problem and is using alkaline batteries in my Styrbar and its recommend using rechargeable batteries that is having little lower voltage so it can being way its reporting to high battery % left. |
Interesting, batteryVoltage also returning 255 does indeed seem to indicate 255 is just a 'oops bad value' on the firmware part. So the current converter that does Not sure what the ikea firmware team is doing but they are really not doing a good job when it comes to the remotes 😞 |
With Tradfri they is testing the direct parring with lights (ala ZLL) and the bridge is using the same working model then its one Dirigera is working in normal Styrbar was the first 2.4 / 24 version controller and its look being fixed for all other is reporting 200% as Zigbee standard (nearly all controller is getting update to V24 then being added in Dirigera also the blinds). Im very sure its one firmware bug and shall being fixed but its likely IKEA is not being aware of it. In the end IKEA is one of the most Zigbee 3 compatible devices on the market and we cant comparing with Aqara and tuya that only have reading the half of the specification before shipping there devices. By the way Synfonisk 2 and new OnOff, OpenClose and Shortcutt buttons ver 2 have getting FCC cert so is coming in some mounts (If CE can delivering them). |
I think we should map any value above 200 to 100%, agree? |
Above @MattWestb said voltage also returns 255 in those case, with that info I's be more inclined to discard 255 entirely. |
Reported voltage of 255 is in 100mV = 25.5 V by ZCL R8 and is unrealistic for 98% of all devices we is using and also its saying: For BatteryPercentageRemaining Attribute is ZCL R8 saying: So in the end its somthing wrong in the device firmware and the question is doing workaround or letting it until IKEA have fixing it ? |
I think we should just discard a 255 value on both the generic batteryPercentRemaining and batteryVoltage converter and the ikea specfic one. I can do a PR for that somewhere this week. |
As mentioned Koenkk/zigbee2mqtt#15725 0xff(255) is an invalid or unknown reading and we should not update battery or voltage.
As mentioned Koenkk/zigbee2mqtt#15725 0xff(255) is an invalid or unknown reading and we should not update battery or voltage.
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days |
Following this issue, is it worth upgrading the firmware to the latest release? If so, how to perform it on the Z2M? I keep getting the following:
|
I have a E2002 remote as well - and for some reason, the OTA doesn't seem to be able to show the upgrade to the latest version (2.4.5). My firmware is stuck at 1.0.024. Do you know if the latest version (2.5.4) was somehow blacklisted on the Z2M side? |
@victorhooi if you check logs you will find that the new firmware value is seen as lower value than the installed one and that prevents Z2M from proceeding. @Koenkk is there a workaround for this behaviour with IKEA Styrbar switches? |
The feeded OTA is the right version inside but the metadata is having wrong version tagged. |
Hmm does that mean it was dumped wrong originally? Or that the ikea hubs do some weird stuff to push them?~ sjorgeOn 16 Aug 2023, at 09:20, MattWestb ***@***.***> wrote:
The feeded OTA is the right version inside but the metadata is having wrong version tagged.
ZHA have patching one OTA file with the right metadata that can being used for local update in Z2M or patching Z2M for forcing it updating the device.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: ***@***.***>
|
@MattWestb I am trying to understand the above - please can you explain better? |
@sjorge IKEA TF is not using the meta data tags in the OTA file only the list its downloading from the OTA feed (they have rolling back some light that way that was one bad update). So patching Z2M or ZHA for overriding the version or using the ZHA posted metadata patched OTA file in one local OTA upgrading is working. ZHA IKEA OTA discussion zigpy/zigpy#660 for more information. |
Having a force (re)install option would be nice I suppose, I know one of my legrand devices has broken version readback on the device blocking an update that fixes a bunch of bugs too. I did experiment with ota.zigbeeOTA and providing a custom JSON with force but that still does some sort of check and won't send to the device. |
All IKEA controllers is blocked for firmware downgrading so its not possible flashing one older file then its running (not the meta data its the version inside the OTA file that is signed and cant being changed without braking it => the device is not flashing it). |
To make it clear for everyone - it was not obvious to me: all you need to do is to enable LevelCtrl, OnOff and Scenes on the first line of the bind tab of the 2.4.5 Styrbar device. To push theses settings to the device, remove the batteries, quickly click the bind button and put the batteries in. |
How did you bind it with a bulb and Z2MQTT at the same time? |
@evilmumi It shall being enough deleting it restart the system and adding it new so its being new added and not the old configuration then the system must getting the new cluster / endpoints OK then its one functional firmware upgrade. |
I deleted my_index.json, the ext_converter.js and the firmware AND also undone the configuration.yaml change. After a lot of pressing 4 times in 5 sec and 10 times fast i got the styrbar back in z2mqtt BUT no button press in LOG
|
This is at all not obvious to me :) but I dont have z2m either :) a pain to get this styrbar to work |
What happened?
After upgrading firmware version from 1.0.24 (20200708) stock firmware at device delivery to newest firmware 2.5.4 (20221028), Styrbar remote does not work anymore. Pairing is working but after that no message are received and power status is reported as 255 instead of 0-100.
Update done using IKEA hub (zigbee2mqtt did not want to update saying 1.0.24 is newer that online version). Remote is working fine when paired with IKEA hub. Version 1.0.24 was working correctly throught zigbee2mqtt (and other ones not yet upgraded still works).
Log below show pairing and configuration, then a few OTA request from the device then nothing else happens even when pressing buttons.
What did you expect to happen?
Remote with latest firmware working
How to reproduce it (minimal and precise)
upgrade a remote to latest firmware from IKEA (2.5.4)
Zigbee2MQTT version
1.28.4
Adapter firmware version
20210708
Adapter
Sonoff Zigbee 3 USB
Debug log
debug 2022-12-23 23:04:29: Received MQTT message on 'zigbee2mqtt/bridge/request/permit_join' with data '{"device":null,"time":254,"transaction":"ercpe-2","value":true}'
info 2022-12-23 23:04:29: Zigbee: allowing new devices to join.
info 2022-12-23 23:04:29: MQTT publish: topic 'zigbee2mqtt/bridge/response/permit_join', payload '{"data":{"time":254,"value":true},"status":"ok","transaction":"ercpe-2"}'
info 2022-12-23 23:04:33: Device '0x385b44fffe38ba50' joined
info 2022-12-23 23:04:33: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x385b44fffe38ba50","ieee_address":"0x385b44fffe38ba50"},"type":"device_joined"}'
info 2022-12-23 23:04:33: MQTT publish: topic 'homeassistant/sensor/0x385b44fffe38ba50/battery/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","name":"0x385b44fffe38ba50 battery","state_class":"measurement","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
info 2022-12-23 23:04:33: MQTT publish: topic 'homeassistant/sensor/0x385b44fffe38ba50/action/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"enabled_by_default":true,"icon":"mdi:gesture-double-tap","name":"0x385b44fffe38ba50 action","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_action_zigbee2mqtt","value_template":"{{ value_json.action }}"}'
info 2022-12-23 23:04:33: MQTT publish: topic 'homeassistant/sensor/0x385b44fffe38ba50/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","name":"0x385b44fffe38ba50 linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
info 2022-12-23 23:04:33: MQTT publish: topic 'homeassistant/sensor/0x385b44fffe38ba50/update_state/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:update","name":"0x385b44fffe38ba50 update state","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_update_state_zigbee2mqtt","value_template":"{{ value_json['update']['state'] }}"}'
info 2022-12-23 23:04:33: MQTT publish: topic 'homeassistant/binary_sensor/0x385b44fffe38ba50/update_available/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"device_class":"update","enabled_by_default":false,"entity_category":"diagnostic","name":"0x385b44fffe38ba50 update available","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_update_available_zigbee2mqtt","value_template":"{{ value_json['update']['state'] == "available" }}"}'
info 2022-12-23 23:04:33: MQTT publish: topic 'homeassistant/update/0x385b44fffe38ba50/update/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"command_topic":"zigbee2mqtt/bridge/request/device/ota_update/update","device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"device_class":"firmware","entity_picture":"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png","latest_version_template":"{% if value_json['update']['state'] == "available" %}{{ 'newer' }}{% else %}{{ value_json['update']['installed_version'] }}{% endif %}","latest_version_topic":"zigbee2mqtt/0x385b44fffe38ba50","name":"0x385b44fffe38ba50","payload_install":"{"id": "0x385b44fffe38ba50"}","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_update_zigbee2mqtt","value_template":"{{ value_json['update']['installed_version'] }}"}'
info 2022-12-23 23:04:33: Starting interview of '0x385b44fffe38ba50'
info 2022-12-23 23:04:33: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x385b44fffe38ba50","ieee_address":"0x385b44fffe38ba50","status":"started"},"type":"device_interview"}'
debug 2022-12-23 23:04:34: Device '0x385b44fffe38ba50' announced itself
info 2022-12-23 23:04:34: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x385b44fffe38ba50","ieee_address":"0x385b44fffe38ba50"},"type":"device_announce"}'
debug 2022-12-23 23:04:34: Received MQTT message on 'homeassistant/sensor/0x385b44fffe38ba50/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","name":"0x385b44fffe38ba50 battery","state_class":"measurement","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
debug 2022-12-23 23:04:34: Received MQTT message on 'homeassistant/sensor/0x385b44fffe38ba50/action/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"enabled_by_default":true,"icon":"mdi:gesture-double-tap","name":"0x385b44fffe38ba50 action","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_action_zigbee2mqtt","value_template":"{{ value_json.action }}"}'
debug 2022-12-23 23:04:34: Received MQTT message on 'homeassistant/sensor/0x385b44fffe38ba50/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","name":"0x385b44fffe38ba50 linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
debug 2022-12-23 23:04:34: Received MQTT message on 'homeassistant/sensor/0x385b44fffe38ba50/update_state/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:update","name":"0x385b44fffe38ba50 update state","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_update_state_zigbee2mqtt","value_template":"{{ value_json['update']['state'] }}"}'
debug 2022-12-23 23:04:34: Received MQTT message on 'homeassistant/binary_sensor/0x385b44fffe38ba50/update_available/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"device_class":"update","enabled_by_default":false,"entity_category":"diagnostic","name":"0x385b44fffe38ba50 update available","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_update_available_zigbee2mqtt","value_template":"{{ value_json['update']['state'] == "available" }}"}'
debug 2022-12-23 23:04:34: Received MQTT message on 'homeassistant/update/0x385b44fffe38ba50/update/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state","value_template":"{{ value_json.state }}"}],"command_topic":"zigbee2mqtt/bridge/request/device/ota_update/update","device":{"identifiers":["zigbee2mqtt_0x385b44fffe38ba50"],"manufacturer":"IKEA","model":"STYRBAR remote control (E2001/E2002)","name":"0x385b44fffe38ba50","sw_version":"2.4.5"},"device_class":"firmware","entity_picture":"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png","latest_version_template":"{% if value_json['update']['state'] == "available" %}{{ 'newer' }}{% else %}{{ value_json['update']['installed_version'] }}{% endif %}","latest_version_topic":"zigbee2mqtt/0x385b44fffe38ba50","name":"0x385b44fffe38ba50","payload_install":"{"id": "0x385b44fffe38ba50"}","state_topic":"zigbee2mqtt/0x385b44fffe38ba50","unique_id":"0x385b44fffe38ba50_update_zigbee2mqtt","value_template":"{{ value_json['update']['installed_version'] }}"}'
debug 2022-12-23 23:04:36: Retrieving state of '0x385b44fffe38ba50' after reconnect
debug 2022-12-23 23:04:38: Device '0x385b44fffe38ba50' announced itself
info 2022-12-23 23:04:38: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x385b44fffe38ba50","ieee_address":"0x385b44fffe38ba50"},"type":"device_announce"}'
debug 2022-12-23 23:04:40: Retrieving state of '0x385b44fffe38ba50' after reconnect
debug 2022-12-23 23:04:48: Received Zigbee message from '0x385b44fffe38ba50', type 'readResponse', cluster 'genPollCtrl', data '{"checkinInterval":172800}' from endpoint 1 with groupID 0
info 2022-12-23 23:04:48: Successfully interviewed '0x385b44fffe38ba50', device has successfully been paired
info 2022-12-23 23:04:48: Device '0x385b44fffe38ba50' is supported, identified as: IKEA STYRBAR remote control (E2001/E2002)
info 2022-12-23 23:04:48: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"definition":{"description":"STYRBAR remote control","exposes":[{"access":1,"description":"Remaining battery in %","name":"battery","property":"battery","type":"numeric","unit":"%","value_max":100,"value_min":0},{"access":1,"description":"Triggered action (e.g. a button click)","name":"action","property":"action","type":"enum","values":["on","off","brightness_move_up","brightness_move_down","brightness_stop","arrow_left_click","arrow_right_click","arrow_left_hold","arrow_right_hold","arrow_left_release","arrow_right_release"]},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"E2001/E2002","options":[{"description":"Simulate a brightness value. If this device provides a brightness_move_up or brightness_move_down action it is possible to specify the update interval and delta. The action_brightness_delta indicates the delta for each interval. ","features":[{"access":2,"description":"Delta per interval, 20 by default","name":"delta","property":"delta","type":"numeric","value_min":0},{"access":2,"description":"Interval duration","name":"interval","property":"interval","type":"numeric","unit":"ms","value_min":0}],"name":"simulated_brightness","property":"simulated_brightness","type":"composite"},{"access":2,"description":"Set to false to disable the legacy integration (highly recommended), will change structure of the published payload (default true).","name":"legacy","property":"legacy","type":"binary","value_off":false,"value_on":true}],"supports_ota":true,"vendor":"IKEA"},"friendly_name":"0x385b44fffe38ba50","ieee_address":"0x385b44fffe38ba50","status":"successful","supported":true},"type":"device_interview"}'
info 2022-12-23 23:04:48: Configuring '0x385b44fffe38ba50'
debug 2022-12-23 23:04:51: Received Zigbee message from '0x385b44fffe38ba50', type 'readResponse', cluster 'genPowerCfg', data '{"batteryPercentageRemaining":255}' from endpoint 1 with groupID 0
info 2022-12-23 23:04:51: MQTT publish: topic 'zigbee2mqtt/0x385b44fffe38ba50', payload '{"action":null,"battery":255,"linkquality":129,"update":{"installed_version":"2.4.5","state":null},"update_available":null}'
info 2022-12-23 23:04:51: Successfully configured '0x385b44fffe38ba50'
debug 2022-12-23 23:07:12: Received Zigbee message from '0x385b44fffe38ba50', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":1,"fileVersion":33816581,"imageType":4555,"manufacturerCode":4476}' from endpoint 1 with groupID 0
debug 2022-12-23 23:07:12: Device '0x385b44fffe38ba50' requested OTA
debug 2022-12-23 23:07:15: Received Zigbee message from '0x385b44fffe38ba50', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":1,"fileVersion":33816581,"imageType":4555,"manufacturerCode":4476}' from endpoint 1 with groupID 0
debug 2022-12-23 23:07:15: Device '0x385b44fffe38ba50' requested OTA
debug 2022-12-23 23:07:18: Received Zigbee message from '0x385b44fffe38ba50', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":1,"fileVersion":33816581,"imageType":4555,"manufacturerCode":4476}' from endpoint 1 with groupID 0
debug 2022-12-23 23:07:18: Device '0x385b44fffe38ba50' requested OTA
debug 2022-12-23 23:07:21: Received Zigbee message from '0x385b44fffe38ba50', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":1,"fileVersion":33816581,"imageType":4555,"manufacturerCode":4476}' from endpoint 1 with groupID 0
debug 2022-12-23 23:07:21: Device '0x385b44fffe38ba50' requested OTA
debug 2022-12-23 23:07:24: Received Zigbee message from '0x385b44fffe38ba50', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":1,"fileVersion":33816581,"imageType":4555,"manufacturerCode":4476}' from endpoint 1 with groupID 0
debug 2022-12-23 23:07:24: Device '0x385b44fffe38ba50' requested OTA
The text was updated successfully, but these errors were encountered: