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.
This commit is contained in:
2026-07-02 23:34:28 -07:00
parent ad9a5b4e02
commit 5383edd4ae
4 changed files with 648 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#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