5383edd4ae
4-button UI for zigbee2mqtt smart plugs with party-lock toggle, touch trace animation, and DJ Booth double-tap protection.
17 lines
361 B
Plaintext
17 lines
361 B
Plaintext
#pragma once
|
|
// Copy this to secrets.h and fill in real values.
|
|
// secrets.h is gitignored.
|
|
|
|
// WiFi networks to try in order
|
|
static const char* WIFI_SSIDS[] = {
|
|
"Dobro Veče",
|
|
};
|
|
static const char* WIFI_PASSPHRASES[] = {
|
|
"goodnight",
|
|
};
|
|
static const int WIFI_NETWORK_COUNT = 1;
|
|
|
|
// MQTT broker
|
|
#define MQTT_HOST "192.168.81.147"
|
|
#define MQTT_PORT 1883
|