Files
borrow-system-locker-esp32/config.h.example
2026-01-22 10:26:50 +01:00

16 lines
444 B
Plaintext

// 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