2020-11-18 00:54:41 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/*
|
2023-01-06 09:24:29 +01:00
|
|
|
* Welcome!
|
2020-11-18 00:54:41 +01:00
|
|
|
* You can use the file "my_config.h" to make changes to the way WLED is compiled!
|
|
|
|
* It is possible to enable and disable certain features as well as set defaults for some runtime changeable settings.
|
2023-01-06 09:24:29 +01:00
|
|
|
*
|
2020-11-18 00:54:41 +01:00
|
|
|
* How to use:
|
|
|
|
* PlatformIO: Just compile the unmodified code once! The file "my_config.h" will be generated automatically and now you can make your changes.
|
2023-01-06 09:24:29 +01:00
|
|
|
*
|
2020-11-18 00:54:41 +01:00
|
|
|
* ArduinoIDE: Make a copy of this file and name it "my_config.h". Go to wled.h and uncomment "#define WLED_USE_MY_CONFIG" in the top of the file.
|
2023-01-06 09:24:29 +01:00
|
|
|
*
|
2020-11-18 00:54:41 +01:00
|
|
|
* DO NOT make changes to the "my_config_sample.h" file directly! Your changes will not be applied.
|
|
|
|
*/
|
|
|
|
|
2022-02-01 12:02:04 +01:00
|
|
|
// uncomment to force the compiler to show a warning to confirm that this file is included
|
|
|
|
//#warning **** my_config.h: Settings from this file are honored ****
|
2020-11-18 00:54:41 +01:00
|
|
|
|
|
|
|
/* Uncomment to use your WIFI settings as defaults
|
|
|
|
//WARNING: this will hardcode these as the default even after a factory reset
|
|
|
|
#define CLIENT_SSID "Your_SSID"
|
|
|
|
#define CLIENT_PASS "Your_Password"
|
|
|
|
*/
|
|
|
|
|
|
|
|
//#define MAX_LEDS 1500 //Maximum total LEDs. More than 1500 might create a low memory situation on ESP8266.
|