add led state off

This commit is contained in:
2019-01-24 22:57:41 +01:00
parent be38a8b7d0
commit 459ad36b0d
2 changed files with 104 additions and 75 deletions

2
led.h
View File

@ -8,6 +8,8 @@
#ifndef LED_H_
#define LED_H_
typedef enum { BLUE = 0, RED = 1, OFF = 2 } tColor;
void ledExec();
void ledInit();