release 0.1

This commit is contained in:
willem oldemans
2020-11-22 16:55:23 +01:00
parent 6d9f14f5b4
commit 43fcb87efc
10 changed files with 114 additions and 89 deletions

View File

@@ -8,7 +8,8 @@
enum e_ledcolor{
RED,
GREEN,
YELLOW
YELLOW,
NONE
};
class c_ledport
@@ -62,7 +63,10 @@ class c_leds
void begin( void );
void turnOnLed(e_ledcolor color);
void turnOffLed(e_ledcolor color);
void turnOnLed(uint16_t index);
c_ledport* getLed(e_ledcolor color);
void turnAllOff( void );
};