appropriate protocol for desktop application for configuring and monitoring IoT devices?
Hello everyone,
I’m an intern software engineer currently developing a Qt-based desktop application for configuring and monitoring IoT devices running Zephyr OS.
At the moment, I’m researching which protocol would be best suited for this purpose. I initially explored SNMP v3 (Simple Network Management Protocol), but it seems that Zephyr OS does not fully support it. Then, I discovered the CoAP (Constrained Application Protocol), which is supported by Zephyr OS and provides both client and server implementations. After that, I looked into the LwM2M protocol, and now I’m exploring mcumgr.
I’m evaluating these protocols based on the following criteria:
- Security
- Bandwidth usage
- Simplicity
Regarding the architecture, I’d like to know if it’s possible for the application to act as a client that pulls data from IoT devices while also allowing data to be pushed using the observe option (in CoAP and LwM2M). Configuration would be done using PUT and POST requests, with the IoT devices acting as servers.
I’d appreciate any insights or recommendations.
Thanks!
