Please, if you can give me an idea of what may happen. I am loading the boot.py program to start the study of WEB.
The same program charge on a plate ESP8266 AND IT WORKS WELL BUT IF I CHARGE ON A PLATE esp-32 shows me the following message, repeatedly.
Thank you
# Complete project details at https://RandomNerdTutorials.com
try:
import usocket as socket
except:
import socket
from machine import Pin
import network
import esp
esp.osdebug(None)
import gc
gc.collect()
ssid = 'REPLACE_WITH_YOUR_SSID'
password = 'REPLACE_WITH_YOUR_PASSWORD'
station = network.WLAN(network.STA_IF)
station.active(True)
station.connect(ssid, password)
while station.isconnected() == False:
pass
print('Connection successful')
print(station.ifconfig())
led = Pin(2, Pin.OUT)