Add GPIO12 startup/activity heartbeat LED behavior

This commit is contained in:
devdesk
2026-02-21 23:32:28 +02:00
parent 25dc34c6e3
commit fc9bbd213f
4 changed files with 108 additions and 15 deletions

11
include/heartbeat.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef HEARTBEAT_H
#define HEARTBEAT_H
#include <Arduino.h>
void setupHeartbeat();
void startupHeartbeatBlink(uint8_t count = 5);
void triggerHeartbeatBlink();
void updateHeartbeat();
#endif