From a1de1924e7d8564a1214f11cce55f60f96ddff8d Mon Sep 17 00:00:00 2001 From: toptah Date: Fri, 6 Mar 2026 22:03:44 +0100 Subject: [PATCH] angepasst --- src/KeyPatch.ino | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/KeyPatch.ino b/src/KeyPatch.ino index 55cdd81..fe61a28 100644 --- a/src/KeyPatch.ino +++ b/src/KeyPatch.ino @@ -6,7 +6,6 @@ #define AMOUNTOFPORTS 8 // currently max 16 ports are supported #define EXPANDER1ADDRESS 0x21 // address of expander 1 - PCF8575 expander1(EXPANDER1ADDRESS); uint8_t portStates[AMOUNTOFPORTS]; uint8_t lastStates[AMOUNTOFPORTS] = {0}; @@ -48,8 +47,7 @@ void setup() { { Serial.println(" => connected!!"); } - - + //Setup NeoPixel NeoPixel_init(AMOUNTOFPORTS); // Initialisierung der NeoPixel for (uint8_t i = 0; i < AMOUNTOFPORTS; i++) { @@ -59,7 +57,6 @@ void setup() { }; pixels->show(); - Serial.println("Setup End..."); }