7" ESP32 Display Wifi very short range 4-6meter, connection not stable

edited November 2023 in Elecrow HMI Display

I have a new Display but i have Problems with Wifi.

Arduino 1.8.13, ESP32S3 2.0.3, Gui make with squareline.

The UI works well, but must i use any other Things to let Wifi work.

I use Standard:

#include <WiFi.h>

Setup:

 // Wi-Fi connection

 WiFi.begin(ssid, password);

 WiFi.setAutoReconnect(true);

 while (WiFi.status() != WL_CONNECTED) {

   delay(500);   Serial.print(".");

 }

 Serial.println("");  Serial.println("WiFi connected");


If the distance over 6 Meter WIFI won`t connect.

Please help

Sign In or Register to comment.