Heya all,
According to the documentation, zigbee.writeAttribute() doesn’t support octet format (0x41),
How does the SmartThings “st wattr” command expect the octet? with commas? a list? separated by commas? just the octet with spaces?
Example:
“st wattr 0x${device.deviceNetworkId} 1 0 0xFFF0 0x41 {octect_payload}”
where octect_payload might be:
- 0xaa, 0x10, 0x05, 0x41, 0x47, 0x01, 0x01, 0x10, 0x01
- [0xaa, 0x10, 0x05, 0x41, 0x47, 0x01, 0x01, 0x10, 0x01]
- 0xaa 0x10 0x05 0x41 0x47 0x01 0x01 0x10 0x01
- [0xaa 0x10 0x05 0x41 0x47 0x01 0x01 0x10 0x01]
Thanks!