This commit is contained in:
2026-04-17 20:36:33 +02:00
parent 035ba6fa16
commit 1e4ab03d4e

View File

@@ -3,8 +3,8 @@
* *
* Hardware: * Hardware:
* ESP32-C5 with ECDSA key stored in eFuse * ESP32-C5 with ECDSA key stored in eFuse
* GPIO 9 Boot button (active-low, press = GND) * GPIO 28 Boot button (active-low, press = GND)
* GPIO 15 User LED (active-high, 1 = on) * GPIO 27 User LED (active-high, 1 = on)
* *
* Provisioning: * Provisioning:
* On first boot, if no ECDSA key is present in eFuse, a random P-256 * On first boot, if no ECDSA key is present in eFuse, a random P-256
@@ -44,8 +44,8 @@ static const char *TAG = "main";
/* ------------------------------------------------------------------------- /* -------------------------------------------------------------------------
* GPIO defines * GPIO defines
* ---------------------------------------------------------------------- */ * ---------------------------------------------------------------------- */
#define GPIO_BTN 9 /* Boot button, active-low */ #define GPIO_BTN 28 /* Boot button, active-low */
#define GPIO_LED 15 /* User LED, active-high */ #define GPIO_LED 27 /* User LED, active-high */
/* ------------------------------------------------------------------------- /* -------------------------------------------------------------------------
* Button / LED types * Button / LED types