diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..68f6c8d Binary files /dev/null and b/.DS_Store differ diff --git a/README.md b/README.md index e69de29..5c78c9f 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +# Borrow System ESP32 - Firmware + +This is the firmware for the ESP32 built into the locker. The credentials should be specified in config.h. \ No newline at end of file diff --git a/config.h b/config.h new file mode 100644 index 0000000..380c543 --- /dev/null +++ b/config.h @@ -0,0 +1,15 @@ +// config.h - Private configuration file +// This file contains sensitive information and should NOT be committed to git + +#ifndef CONFIG_H +#define CONFIG_H + +// WiFi credentials +const char* WIFI_SSID = "MCS-BYOD"; +const char* WIFI_PASSWORD = "mcs-By0D"; + +// Backend API configuration +const char* BACKEND_URL = "https://insta.the1s.de/backend/api"; +const char* API_KEY = "82761286"; // Replace with your 8-digit API key + +#endif // CONFIG_H