Search found 1 match
- Fri Oct 25, 2024 3:36 pm
- Forum: Hardware
- Topic: ESP32S v1.1 NodeMcu board, can't connect to WiFi if usb is connected
- Replies: 0
- Views: 535
ESP32S v1.1 NodeMcu board, can't connect to WiFi if usb is connected
Hi, I have a simple code in MicrpPython to connect to Wi-Fi, just to reproduce the error. import network, requests, json from machine import Pin import time ssid="branca" pwd="zzzzzzzzz" led=Pin(2,Pin.OUT) led.off() # Crea objeto de red wifi wlan=network.WLAN(network.STA_IF) # # Conecta a la red wi...