takahiro maeda / CLED

Dependents:   Nucleo_IHS11a

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CLED.h Source File

CLED.h

00001 #ifndef CLED_H
00002 #define CLED_H
00003 #include "Sensor.h"
00004 
00005 // *************************** CLED ********************************
00006 class CLED {
00007   public:
00008     CLED(int ver=10);
00009     void set(byte* ary12, bool indiRow = false);
00010     void set(byte val12);
00011 
00012   private:
00013     void indiBlink();
00014     const byte* color;
00015     static const byte c10[7];
00016     static const byte c11[7];
00017     static const byte INDI_COLOR;
00018     bool inOn;
00019 };
00020 
00021 #endif