23 lines
273 B
C
23 lines
273 B
C
/*
|
|
* led.h
|
|
*
|
|
* Created on: Jan 24, 2019
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef LED_H_
|
|
#define LED_H_
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
typedef enum { BLUE = 0, RED = 1, OFF = 2 } tColor;
|
|
|
|
|
|
void ledInit();
|
|
void ledSetMatrix(uint8_t col, uint8_t row, tColor color);
|
|
|
|
|
|
#endif /* LED_H_ */
|