1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 09:38:31 +00:00

Used port-constant for web-server creation in NodeMCU-sketch

Co-authored-by: Leon Kiefer <leon.k97@gmx.de>
This commit is contained in:
DarthAffe 2020-07-14 14:28:20 +02:00 committed by GitHub
parent b8a3593792
commit 1e8c6596c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ CRGB leds_channel_2[LEDS_CHANNEL_2];
CRGB leds_channel_3[LEDS_CHANNEL_3];
CRGB leds_channel_4[LEDS_CHANNEL_4];
ESP8266WebServer server(80);
ESP8266WebServer server(WEBSERVER_PORT);
WiFiUDP Udp;
bool isUDPEnabled;
@ -292,4 +292,4 @@ void loop()
processUDP();
}
}