Skip to content

Commit e4cda4b

Browse files
committed
change default Ethernet board to none
1 parent f333f86 commit e4cda4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wled00/wled.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ WLED_GLOBAL IPAddress staticGateway _INIT_N((( 0, 0, 0, 0))); // gateway (r
205205
WLED_GLOBAL IPAddress staticSubnet _INIT_N(((255, 255, 255, 0))); // most common subnet in home networks
206206
WLED_GLOBAL bool noWifiSleep _INIT(false); // disabling modem sleep modes will increase heat output and power usage, but may help with connection issues
207207
#ifdef WLED_USE_ETHERNET
208-
#ifdef WLED_ETH_DEFAULT // use none for ethernet board type if default not defined
208+
#ifdef WLED_ETH_DEFAULT // default ethernet board type if specified
209209
WLED_GLOBAL int ethernetType _INIT(WLED_ETH_DEFAULT); // ethernet board type
210210
#else
211-
WLED_GLOBAL int ethernetType _INIT(WLED_ETH_NONE); //default ethernet board type if specified
211+
WLED_GLOBAL int ethernetType _INIT(WLED_ETH_NONE); // use none for ethernet board type if default not defined
212212
#endif
213213
#endif
214214

0 commit comments

Comments
 (0)