Initial commit
This commit is contained in:
15
config.h.example
Normal file
15
config.h.example
Normal file
@@ -0,0 +1,15 @@
|
||||
// config.h.example - Template configuration file
|
||||
// Copy this file to config.h and fill in your actual values
|
||||
|
||||
#ifndef CONFIG_H
|
||||
#define CONFIG_H
|
||||
|
||||
// WiFi credentials
|
||||
const char* WIFI_SSID = "YOUR_WIFI_SSID";
|
||||
const char* WIFI_PASSWORD = "YOUR_WIFI_PASSWORD";
|
||||
|
||||
// Backend API configuration
|
||||
const char* BACKEND_URL = "https://insta.the1s.de/backend/api";
|
||||
const char* API_KEY = "12345678"; // Replace with your 8-digit API key
|
||||
|
||||
#endif // CONFIG_H
|
||||
Reference in New Issue
Block a user