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