I can't see my esp32 ip address

code used:
#include <WiFi.h>

char ssid[] = "yourNetwork"; //SSID of your network

int status = WL_IDLE_STATUS; // the Wifi radio's status

IPAddress ip; // the IP address of your shield

void setup()
{
// initialize serial:
Serial.begin(115200);

WiFi.begin(ssid);

if ( status != WL_CONNECTED) {
Serial.println("Couldn't get a wifi connection");
while(true);
}
// if you are connected, print out info about the connection:
else {
//print the local IP address
ip = WiFi.localIP();
Serial.println(ip);

}
}

void loop () {}

serial monitor return:

01:22:17.164 -> ets Jul 29 2019 12:21:46

01:22:17.164 ->

01:22:17.164 -> rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)

01:22:17.164 -> configsip: 0, SPIWP:0xee

01:22:17.164 -> clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00

01:22:17.164 -> mode:DIO, clock div:2

01:22:17.164 -> load:0x3fff0018,len:4

01:22:17.164 -> load:0x3fff001c,len:5564

01:22:17.164 -> load:0x40078000,len:0

01:22:17.219 -> load:0x40078000,len:13756

01:22:17.219 -> entry 0x40078fb4

01:22:17.219 -> e[0;32mI (29) boot: ESP-IDF v3.0.3 2nd stage bootloadere[0m


to resume, i dont think i can run any kind of function on my arduino ide. the wifi manager driver its installed, ive confirm the COMM port etc etc

please, please never ever again post pictures of text... Not only they are not readable nor usable directly for copy&paste but they use up lots of storage and internet bandwidth which contributes to polluting the planet.

➜ do your part and do yourself a favour and please read How to get the best out of this forum and modify your post accordingly (including code tags and necessary documentation for your ask).

Are you using an Arduino Nano ESP32 or some other ESP32?

I moved your topic to a more appropriate forum category @juloasm.

The Nano ESP32 category you chose is only used for discussions directly related to the Arduino Nano ESP32 board.

In the future, please take the time to pick the forum category that best suits the subject of your question. There is an "About the _____ category" topic at the top of each category that explains its purpose.

Thanks in advance for your cooperation.

other esp32. wroom esp 32.

I don't have the answer.

@pert already moved it.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.