I just received 5 boards from AZ Delivery; D1 R32 and it has the ESP32-WROOM-32 chip. I am very exited about the boards and I'm just getting started. I've got the board installed, using the Arduino IDE and no problem uploading to the board and got the blink script running without a problem.
I'm ok creating projects on ESP8266 and NodeMCU and I'm pretty sure I've installed everything correctly.
Trying to run a basic webserver but the board does not sign in to my router. I'm used to creating servers with ESP8266 and using SPIFFS no problem.
This is the first part of my code.
Code: Select all
#include <WiFi.h>
#include <WebServer.h>
// SSID & Password
const char* ssid = "MY_SSID"; // Enter your SSID here
const char* password = "my_password"; //Enter your Password here
WebServer server(80); // Object of WebServer(HTTP port, 80 is defult)
void setup() {
Serial.begin(115200);
Serial.println("Try Connecting to ");
Serial.println(ssid);
// Connect to your wi-fi modem
WiFi.begin(ssid, password);
I see very little about this specific board on the net and hoping someone can point me to a resource for this specific board please?