Initial commit

This commit is contained in:
2026-01-22 10:26:50 +01:00
commit d040d6a886
3 changed files with 431 additions and 0 deletions

15
config.h.example Normal file
View 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