Initial commit (secrets isolated)

This commit is contained in:
2026-09-25 20:39:04 +10:00
commit ec40712725
3 changed files with 18 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
secrets.h
.pio/
build/
.vscode/
.idea/
*.bin
*.elf
*.hex

1
Driveway Light Submodule

Submodule Driveway Light added at 5701d20bb7

9
secrets.h.example Normal file
View File

@@ -0,0 +1,9 @@
#ifndef SECRETS_H
#define SECRETS_H
#define SECRET_WIFI_SSID "YOUR_WIFI_SSID"
#define SECRET_WIFI_PASS "YOUR_WIFI_PASSWORD"
#define SECRET_MQTT_USER "YOUR_MQTT_USERNAME"
#define SECRET_MQTT_PASS "YOUR_MQTT_PASSWORD"
#endif