IHS1.1-STM32F303K8

Dependents:   Nucleo_IHS11a

Revision:
1:62baf2ea5573
Parent:
0:0fcc82d7750c
--- a/CLED.h	Thu Jul 16 08:20:57 2020 +0000
+++ b/CLED.h	Fri Oct 23 06:37:09 2020 +0000
@@ -6,7 +6,7 @@
 class CLED {
   public:
     CLED(int ver=10);
-    void set(byte* ary12, bool indi = false);
+    void set(byte* ary12, bool indiRow = false);
     void set(byte val12);
 
   private:
@@ -15,7 +15,7 @@
     static const byte c10[7];
     static const byte c11[7];
     static const byte INDI_COLOR;
-    byte indVal;
+    bool inOn;
 };
 
 #endif