load wifi-credentials file withCreated: 01 February 2021 | Written by vincent | Print | Hits: 3702 View Comments load wifi-credentials file with credentials.h // Replace with your actual SSID and password: #define WIFI_SSID "Your SSID here" #define WIFI_PASSWD "WLAN AP password here" your sketch, you add: #include "credentials.h" const char ssid[] = WIFI_SSID; const char password[] = WIFI_PASSWD; View the discussion thread. back to top