Files
david 5383edd4ae cyd-dashboard: add CYD plug dashboard sketch
4-button UI for zigbee2mqtt smart plugs with party-lock toggle,
touch trace animation, and DJ Booth double-tap protection.
2026-07-02 23:34:28 -07:00

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