added README

This commit is contained in:
2026-01-22 10:40:35 +01:00
parent d040d6a886
commit 655c906756
3 changed files with 18 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -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.

15
config.h Normal file
View File

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