Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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
Generated on Sat Jul 23 2022 14:42:27 by
1.7.2