Page 1 of 1

ESP32-WROOM-32

Posted: Tue Mar 16, 2021 8:31 pm
by Fatman
Hi all.

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);
It does nothing beyond this point...?

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? :)

Re: ESP32-WROOM-32

Posted: Tue Mar 16, 2021 9:19 pm
by chegewara

Re: ESP32-WROOM-32

Posted: Thu Mar 18, 2021 2:10 am
by jimhelios
Well that board does have the antenna on the module.

I assume that you made triple sure you entered your router's SSID and password correctly? Is there a space in the SSID?