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..."); }