-
Notifications
You must be signed in to change notification settings - Fork 4k
Ikea E2204/E2206 #11110
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 E2204/E2206 #11110
Conversation
|
Thank you! |
|
Do you have an E2206 to test with ? If firmware build 2.4.4 for both (E2204/E2206) is the minimum version and |
|
No, my E2206 is already updated. Can only test 2.4.4 on E2204. |
|
Thanks! |
|
@andrei-lazarov I just had a quick check and it seems the E2206 has been released after the E2204. In my opinion, the firmware check on the |
|
@chris-1243 I see the initial E2206 support request reports firmware: |
|
If you remove the whole ...
result.exposes = [
(device) => {
if (
!isDummyDevice(device) &&
device.softwareBuildID &&
semverValid(device.softwareBuildID) &&
semverGte(device.softwareBuildID, "2.4.25")
) {
return [binary(resultName, access.ALL, "TRUE", "FALSE").withDescription(resultDescription).withCategory("config")];
}
return [];
},
];
return result;
},And you go as below, it should work. ...
result.exposes = [
(device) => {
return [binary(resultName, access.ALL, "LOCK", "UNLOCK").withDescription(resultDescription).withCategory("config")];
},
];
return result;
},Of course, there might be a cleanest way... |
Following request in PR #10793,
Child lockis now enabled for software build 2.4.4 or higher. This was tested only with the E2204. I could not test this on E2206.I have reached my typescript knowledge for the
led enableoption. If someone is able to help here and as suggested in the comment below, it would be great.#10793 (comment)
CC: @andrei-lazarov