v.0.0.1 setup Serial output

This commit is contained in:
tiijay
2025-11-03 15:19:04 +01:00
parent 941c168de8
commit 156ce19ec6
3 changed files with 52 additions and 35 deletions

View File

@@ -57,6 +57,14 @@ void playWithBlinkLed()
void setup()
{
// Initialize Serial for debug output
Serial.begin(115200);
// Wait for Serial to be ready (important for some boards)
while (!Serial)
{
delay(10);
}
matrix.setBrightness(255);
matrix.clear();