16 lines
444 B
Plaintext
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
|