Hi
Last time I did course on ESP32 by which I learned to build a AsyncWebServer webserver. Where I was bale to change values and store / retrieve.
I am trying to build similar kind of application using Arduino Nano IOT board. Do you have a course for that.
Thanks
Hi Johan.
I never worked with that board and at the moment, I don’t have any tutorials about it.
Regards,
Sara
Hi Sara,
Thank you for the reply. Arduino Nano IoT has limited capabilities. I am going for ESP32 Main Board with Wi-Fi and Bluetooth. Can you please confirm I can use following libraries with ESP32;
#include <ESP8266WiFi.h>
#include <ESPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#include <Hash.h>
#include <FS.h>
#include <ESP8266mDNS.h>
Best regards
Johan
Hi.
Those libraries are for the ESP8266.
For the ESP32, you should use:
- WiFi.h (built-in library): https://github.com/espressif/arduino-esp32/tree/master/libraries/WiFi
- AsyncTCP.h: https://github.com/me-no-dev/AsyncTCP
- ESPmNDS.h (built-in library) : https://github.com/espressif/arduino-esp32/blob/master/libraries/ESPmDNS/src/ESPmDNS.h
Regards,
Sara