disable softap, forgot name in config

This commit is contained in:
dezeyer 2019-05-11 14:18:56 +00:00
parent 1e5fd8fec2
commit 27a7fb73d9
2 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,8 @@
#define MILLI_AMPS 2000 // IMPORTANT: set the max milli-Amps of your power supply (4A = 4000mA)
#define FRAMES_PER_SECOND 120 // here you can control the speed. With the Access Point / Web Server the animations run a bit slower.
String StripName = "Egon";
const char* ssid = "none";
const char* password = "none";

View File

@ -30,6 +30,7 @@ void setup() {
FastLED.setMaxPowerInVoltsAndMilliamps(5, MILLI_AMPS);
fill_solid(leds, NUM_LEDS, CRGB::Black);
wdt_enable(WDTO_4S); // Watchdog auf 4 s stellen
WiFi.softAPdisconnect (true);
FastLED.show();
Udp.begin(random(5000,5500));