Search found 2 matches

by Freaknyou
Thu Dec 07, 2023 8:26 am
Forum: General Discussion
Topic: Output Problem with Wi-Fi scan on Arduino IDE
Replies: 2
Views: 3503

Re: Output Problem with Wi-Fi scan on Arduino IDE

ESP_Sprite wrote:
Thu Dec 07, 2023 12:52 am
Your ESP32 is set to 115200 baud, but your terminal is set to 9600 baud. Change one of the two.
It works now thx
by Freaknyou
Wed Dec 06, 2023 5:24 pm
Forum: General Discussion
Topic: Output Problem with Wi-Fi scan on Arduino IDE
Replies: 2
Views: 3503

Output Problem with Wi-Fi scan on Arduino IDE

I want to scan all avaible wi-fi with my ESP-WROOM-32, i can upload this code to the board without problem #include "WiFi.h" void setup() { Serial.begin(115200); // Set WiFi to station mode and disconnect from an AP if it was previously connected. WiFi.mode(WIFI_STA); WiFi.disconnect(); delay(100); ...