diff options
-rw-r--r-- | Matrix-3x3.pde | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Matrix-3x3.pde b/Matrix-3x3.pde index 6a2a147..eea52e5 100644 --- a/Matrix-3x3.pde +++ b/Matrix-3x3.pde @@ -1,8 +1,6 @@ /* Blink - Turns on an LED on for one second, then off for one second, repeatedly. - This example code is in the public domain. */ #define ROW 3 #define COL 0 @@ -21,7 +19,6 @@ int framenr = 0; int rownr = 0; void setup() { // initialize the digital pin as an output. - // Pin 13 has an LED connected on most Arduino boards: int i; for (i = 0;i < ROWCNT; i++) pinMode(ROW + i, OUTPUT); |