IHS1.1-STM32F303K8

Dependents:   Nucleo_IHS11a

CLED.h

Committer:
maro
Date:
2020-10-23
Revision:
1:62baf2ea5573
Parent:
0:0fcc82d7750c

File content as of revision 1:62baf2ea5573:

#ifndef CLED_H
#define CLED_H
#include "Sensor.h"

// *************************** CLED ********************************
class CLED {
  public:
    CLED(int ver=10);
    void set(byte* ary12, bool indiRow = false);
    void set(byte val12);

  private:
    void indiBlink();
    const byte* color;
    static const byte c10[7];
    static const byte c11[7];
    static const byte INDI_COLOR;
    bool inOn;
};

#endif