ESP32-WROOM-32

Fatman
Posts: 1
Joined: Tue Mar 16, 2021 8:10 pm

ESP32-WROOM-32

Postby Fatman » Tue Mar 16, 2021 8:31 pm

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? :)
Attachments
esp32-wroom.jpg
esp32-wroom.jpg (217.87 KiB) Viewed 3440 times


jimhelios
Posts: 39
Joined: Sun Nov 10, 2019 2:35 pm

Re: ESP32-WROOM-32

Postby jimhelios » Thu Mar 18, 2021 2:10 am

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?

Who is online

Users browsing this forum: No registered users and 224 guests