Is there a list somewhere, of the ESP32 Arduino API?
For example, how do I switch off the WiFi and Bluetooth infrastructure?
How do I count internal cycle ticks?
Rajiv
Hello Rajiv!
Using the ESP32 with Arduino IDE provides an Arduino compatible environment on the esp32 hardware. https://www.arduino.cc/reference/en/ has the basic arduino functional documentation.
Arduino for ESP32 is a compatibility layer that calls the IDF functions. You can find the ESP IDF documentation here:
Basically, you can both APIs on ESP32 programmed with Arduino IDE. You can either run Arduino code or call IDF functions directly on your Arduino code.
You can find all the Wi-Fi and bluetooth advanced featured in the following link: https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/index.html
I hope that helps.
Regards,
Rui
Thank you. Yours is one of the most valuable resources on the Net, for the ESP32… ?