Make everything top secret.

This commit is contained in:
Kenwood 2021-04-26 16:30:28 -04:00
parent 6fd45c2a8f
commit 76260212d2
3 changed files with 10 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*_secrets.h

View File

@ -1,8 +1,13 @@
// Include the esp wifi lib
#include <ESP8266WiFi.h>
// Include the mqtt client lib
#include <PubSubClient.h>
#define wifi_ssid "muner"
#define wifi_password "Ah ah ah, you didn't say the magic word."
// Include any secrets.
#include "window_control_secrets.h"
#define wifi_ssid SECRET_SSID
#define wifi_password SECRET_PASS
#define mqtt_server "mqtt.kitsunehosting.net"
#define mqtt_port 1883

View File

@ -0,0 +1,2 @@
#define SECRET_SSID "secret_ssid"
#define SECRET_PASS ""Ah ah ah, you didn't say the magic word.""