Files
stefankoelle 82d466cada Phase 0: minimal main.cpp (WiFi + display + LVGL test button) + carry over hardware-independent helpers
- src/main.cpp rewritten for ESP32-S3: Serial + display_init + WiFi
  connect (logic ported from old main.cpp, M5.Lcd prints -> Serial),
  LVGL test button screen to verify touch in Phase 1
- include/text_utils.h, date_utils.h: kept 1:1 (no M5Stack dependency)
- include/secrets.h.example, .gitignore, scripts/{build,deploy}.sh,
  .github/workflows/build.yml: kept 1:1 (hardware-independent)
2026-08-02 10:29:01 +02:00

12 lines
395 B
Plaintext

#pragma once
// Copy this file to secrets.h and fill in your real values.
// secrets.h is git-ignored and must never be committed.
#define WIFI_SSID "YOUR_WIFI_SSID"
#define WIFI_PASSWORD "YOUR_WIFI_PASSWORD"
#define WEATHER_API_URL "http://<host>:<port>/api/weather"
#define CALENDAR_API_URL "http://<host>:<port>/api/events"
#define DEPARTURES_API_URL "http://<host>:<port>/api/departures"