#ifndef WIFI_H_ #define WIFI_H_ /** * Enter WiFi network information */ /// @brief The SSID of the WiFi network to connect to. const char* WIFI_SSID = ""; /// @brief The password of the WiFi network to connect to. const char* WIFI_PASS = ""; #endif