mirror of
https://github.com/skoelle/m5stack-dashboard.git
synced 2026-09-17 16:50:23 +00:00
12 lines
395 B
C
12 lines
395 B
C
#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"
|