Marcel

Results 103 comments of Marcel

> Might I suggest a slightly different approach. > > I'm not sure when this became a default but my envs all have "Upload Filesystem Image OTA" as a task...

I have read the CLA Document and I hereby sign the CLA

add page ![image](https://github.com/user-attachments/assets/747b8648-e810-4ea5-a8e9-27e223ba61eb)

It is bit worrysome that it does not show as online. If it is online, make a switch for the testmiot channel and switch it on once. If things went...

Thanks, that is helpfull. Wrt to the power, from the log it looks like the updating works, right? (meaning if you change it directly on the device or in the...

Thanks for that confirmation. I got reports for more (new) miio devices act that way ;-( Note that I did add the line in the readme indicating this issue for...

> Thanks. Btw, the "CRC" is not CRC but actually a nibble sum without carry (xor), right? :-) i directly believe you.... The formula works I know.. sum of each...

> Preferably rename `crc` to `chk`. The formular `crc ^= (b[j / 8] >> (4 * (1 - (j % 8) / 4))) & 0x0F;` seems strange, e.g. the first...

int sum = add_nibbles(b, 3) + (b[3] >> 4); did not work well, as it does not apply the xor. I added a new function to do that, indeed in...