Brewhouse/lib/secrets/secrets.h
2023-01-25 21:00:25 -05:00

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