ZigBee multi-sensor example with zephyr Error.

I have been working with multi-sensor example of ZigBee to develop it in zephyr. every things went well of endpoint sensor except that the coordinator suppose to receive the reading of temperature sensor.

The output error of coordinator are: Unimplemented signal (signal: 50, status: 0). the error appeared also in endpoint multi-sensor that I implemented from nrf5 SDK to nRF Connect SDK (zephyr).

      

according to Internal ZBOSS error codes the error appeared because of  RET_CONVERSION_ERROR ! I don't know what is mean or where I can fix this error! by the way the coordinator is the same of the light example coordinator.

any one can help?

I'm using zephyr nRF Connect SDK 1.18.0 with nrf52833.

  • Hello,

    yes I copied the multi-sensor directly from nRF5 SDK but I have made small changes to implemented with zephyr.

    the source code that works and I use sniffer to read packets from the multi-sensor node: 

    I follow the steps in Zigbee Multi Sensor Example until step 7 (binding step) to get reading. and did not get any error.

    I have question. how do I bind EP and print the data in coordinator?

  • Hi,

    kalbani said:
    I have question. how do I bind EP and print the data in coordinator?

    If you are using nRF Connect SDK you can use the following:

    • zdo bind on to create a binding
    • zcl subscribe on to subscribe to attribute changes
    • log enable inf zigbee_shell_report to enable logging the report attribute packets

    However, the network coordinator sample is rather simple and might not support all features. You can try to use the Zigbee Shell sample instead and see if you get the same issue.

    kalbani said:
    sniffer to read packets from the multi-sensor node: multi-sensor3.pcapng

    The packets in the sniffer log are encrypted, so I am unable to see the payload. Can you share the network key so I can decrypt the packets, or get a new sniffer log where you start the sniffer before the coordinator starts the network?

    Best regards,

    Marte

Related