diff --git a/.gitignore b/.gitignore index 70674ba..fe95723 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +include/password.h + *.swp *.swo *.bak diff --git a/include/user_config.h b/include/user_config.h index a5773bc..22b1588 100644 --- a/include/user_config.h +++ b/include/user_config.h @@ -3,8 +3,10 @@ #include -static const char wifi_ssid[] = ""; -static const char wifi_password[] = ""; +#include "password.h" + +static const char wifi_ssid[] = WIFI_SSID; +static const char wifi_password[] = WIFI_PASSWORD; static const const uint16_t udp_port = 1337; #endif