Move mqtt user and pass to secrets.h.
This commit is contained in:
parent
76260212d2
commit
4be7876cce
|
@ -11,8 +11,8 @@
|
||||||
|
|
||||||
#define mqtt_server "mqtt.kitsunehosting.net"
|
#define mqtt_server "mqtt.kitsunehosting.net"
|
||||||
#define mqtt_port 1883
|
#define mqtt_port 1883
|
||||||
#define mqtt_user "device"
|
#define mqtt_user SECRET_MQTT_USER
|
||||||
#define mqtt_password "iamnotacrook"
|
#define mqtt_password SECRET_MQTT_PASS
|
||||||
|
|
||||||
#define in_topic "/testing/in"
|
#define in_topic "/testing/in"
|
||||||
#define out_topic "/testing/out"
|
#define out_topic "/testing/out"
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
#define SECRET_SSID "secret_ssid"
|
#define SECRET_SSID "secret_ssid"
|
||||||
#define SECRET_PASS ""Ah ah ah, you didn't say the magic word.""
|
#define SECRET_PASS ""Ah ah ah, you didn't say the magic word.""
|
||||||
|
|
||||||
|
#define SECRET_MQTT_USER "mqtt_user"
|
||||||
|
#define SECRET_MQTT_PASS "mqtt_pass"
|
Loading…
Reference in New Issue