Make everything top secret.
This commit is contained in:
parent
6fd45c2a8f
commit
76260212d2
|
@ -0,0 +1 @@
|
|||
*_secrets.h
|
|
@ -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
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
#define SECRET_SSID "secret_ssid"
|
||||
#define SECRET_PASS ""Ah ah ah, you didn't say the magic word.""
|
Loading…
Reference in New Issue