feat(boards): add ESP32-32E-4 (4" ST7796) board support

This commit is contained in:
2026-02-17 22:07:51 -08:00
parent a42415e64e
commit cbe7efe883
8 changed files with 405 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include <KlubhausCore.h>
// Copy this file to secrets.h and fill in your credentials.
// secrets.h is gitignored.
static const WiFiCred wifiNetworks[] = {
{ "Your_SSID_1", "password1" },
{ "Your_SSID_2", "password2" },
};
static const int wifiNetworkCount = sizeof(wifiNetworks) / sizeof(wifiNetworks[0]);