From 9d3706b0734f2141a24adcca91c953610876bfb1 Mon Sep 17 00:00:00 2001 From: antman1p Date: Sat, 17 Nov 2018 12:17:53 -0500 Subject: [PATCH] Fix uint16 error Someone forgot the _t in declaring the myColors array. It would not compile until I added this. Was getting an error: "uint16 does not name a type." --- LED-Matrix-Mario-Display/LED-Matrix-Mario-Display.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LED-Matrix-Mario-Display/LED-Matrix-Mario-Display.ino b/LED-Matrix-Mario-Display/LED-Matrix-Mario-Display.ino index 55a2d3c..5e8691e 100644 --- a/LED-Matrix-Mario-Display/LED-Matrix-Mario-Display.ino +++ b/LED-Matrix-Mario-Display/LED-Matrix-Mario-Display.ino @@ -47,7 +47,7 @@ uint16_t myCYAN = display.color565(0, 255, 255); uint16_t myMAGENTA = display.color565(255, 0, 255); uint16_t myBLACK = display.color565(0, 0, 0); -uint16 myCOLORS[8] = {myRED, myGREEN, myBLUE, myWHITE, myYELLOW, myCYAN, myMAGENTA, myBLACK}; +uint16_t myCOLORS[8] = {myRED, myGREEN, myBLUE, myWHITE, myYELLOW, myCYAN, myMAGENTA, myBLACK}; // This is a horribly inefficient way of drawing this, but meh.. :) // Converted using the following site: http://www.rinkydinkelectronics.com/t_imageconverter565.php