18 lines
206 B
C
18 lines
206 B
C
/*
|
|
* led.h
|
|
*
|
|
* Created on: Jan 24, 2019
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef LED_H_
|
|
#define LED_H_
|
|
|
|
typedef enum { BLUE = 0, RED = 1, OFF = 2 } tColor;
|
|
|
|
|
|
void ledExec();
|
|
void ledInit();
|
|
|
|
#endif /* LED_H_ */
|