EDF - OnePIC MCU  v1.1.0
source/base/include/OnePIC_led.h
Go to the documentation of this file.
00001 
00008 #ifndef _EDF_LED_H
00009 #define _EDF_LED_H
00010 #include "Compiler.h"
00011 #include <stdint.h>
00012 
00047 typedef enum
00048 {
00049     LED_UP,
00050     LED_DOWN,
00051     LED_LEFT,
00052     LED_RIGHT,
00053     LED_ENTER,
00054     LED_1,
00055     LED_2,
00056     LED_3,
00057     LED_4,
00058     LED_5,
00059     LED_6,
00060     LED_7,
00061     LED_8
00062     
00063 }EDF_LED;
00064 
00071 void EDF_LEDSet(EDF_LED d);
00072 
00079 void EDF_LEDClr(EDF_LED d);
00080 
00086 void EDF_pot2bar(uint16_t n);
00087 
00093 void EDF_LEDBarSet(uint8_t bf);
00094 
00099 void EDF_LEDInit(void);
00100 #endif // _EDF_LED_H
00101