From f12e3e03ac6c4122526080cf69eac9a9ae23b054 Mon Sep 17 00:00:00 2001 From: Damian Schneider Date: Wed, 26 Nov 2025 07:33:47 +0100 Subject: [PATCH] set default AP channel to 7 to help with bad antennas Channel 1 can have very bad performance on some designs, its better to use a center channel. --- wled00/wled.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/wled.h b/wled00/wled.h index d1cddd8f..4eb5b65d 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -365,7 +365,7 @@ WLED_GLOBAL wifi_options_t wifiOpt _INIT_N(({0, 1, false, AP_BEHAVIOR_BOOT_NO_CO #define force802_3g wifiOpt.force802_3g #else WLED_GLOBAL int8_t selectedWiFi _INIT(0); -WLED_GLOBAL byte apChannel _INIT(1); // 2.4GHz WiFi AP channel (1-13) +WLED_GLOBAL byte apChannel _INIT(7); // 2.4GHz WiFi AP channel (1-13) WLED_GLOBAL byte apHide _INIT(0); // hidden AP SSID WLED_GLOBAL byte apBehavior _INIT(AP_BEHAVIOR_BOOT_NO_CONN); // access point opens when no connection after boot by default #ifdef ARDUINO_ARCH_ESP32