Page 1 of 1

Support for IEEE 802.15.4

Posted: Tue May 27, 2025 10:36 am
by juvddrie
Hello,

In the past I have developed code using the esp-idf libraries for IEEE 802.15.4 (https://github.com/espressif/esp-idf/tr ... ieee802154), which worked fine.
Now I'm wondering if there is a way to reuse that code in combination with the ESP32 Arduino libraries?

Alternatively, are there Arduino libraries for directly sending and receiving IEEE 802.15.4 messages?

Kind regards

Re: Support for IEEE 802.15.4

Posted: Wed May 28, 2025 3:20 pm
by lbernstone
arduino-esp32 is a layer over esp-idf; you can directly use any IDF code in Arduino (you may need to adjust it for C++ rather than C).
There is a Zigbee library, but if you want more direct access to the radio, you can re-use your existing code.