Artem Sinelnikov

Results 5 comments of Artem Sinelnikov

faced the same problem, I'm sure it's related to this https://github.com/goldfire/howler.js/issues/1163

@felipediel hi I have four devices `SP4L-EU`, one main and three others are connected through it. I was unable to get a list of subdevices, I am attaching the logs...

@felipediel I tried running the code on my environment and got similar results ```python >>> r = b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\xd2\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\t\x13%:\x8ba\x0bX\xa8\xc0\x915\x00\xb0C\xa0Smart Plug 2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00E\x9a\x9aE\x02\x00\x00\x00\xca\xd46RR\x0b\x00\x00\x02\x00\xa0C\xb0/\xf8\x19\xa0C\xb0\x00'\xfe" >>> b = r[0x80:] >>> b.hex() '459a9a4502000000cad43652520b00000200a043b02ff819a043b00027fe' ``` ### MAC...

@felipediel ### Byte 16 to 18 is the number of devices in little-endian: ```python >>> int.from_bytes(b[16:18], 'little') 2 ```