Initial commit

This commit is contained in:
2026-01-26 10:22:19 +01:00
commit b4f6dd8bf7
4 changed files with 448 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