25 lines
515 B
C
25 lines
515 B
C
/* This file is all the stuff I want to be
|
|
able to change without having to update the
|
|
source repository.
|
|
*/
|
|
|
|
#ifndef SECRETS_H
|
|
#define SECRETS_H
|
|
|
|
#define I_CS1 47
|
|
#define I_CS2 48
|
|
|
|
// NETWORK CREDENTIALS
|
|
#define WIFI_SSID "gia_home"
|
|
#define WIFI_PASSWORD "uolwqzmvwhdetviw"
|
|
|
|
// MQTT BROKER
|
|
#define MQTT_NAME "brewhouse"
|
|
#define MQTT_PASSWORD "4SutKhR2ZEET2IU0PNhH"
|
|
#define MQTT_USER "mqtt_user"
|
|
static const IPAddress MQTT_BROKER(192, 168, 1, 198);
|
|
|
|
static const double Hysteresis = 1; //
|
|
|
|
#endif
|