led.h
上传用户:fy98168
上传日期:2015-06-26
资源大小:13771k
文件大小:1k
- /****************************************************************************
- ** Notice: Notice: Copyright (c) 2007 Keybridge Co.Ltd. - All Rights Reserved
- **
- ** File Name: led.h
- **
- ** $Revision: $
- ** $Date: $
- **
- ** Description:
- **
- **
- ****************************************************************************/
- #ifndef _LED_H_
- #define _LED_H_
- #include <string.h>
- typedef struct
- {
- unsigned char show_code; //显示字符
- unsigned char led_code; // led 字符
- } T_LED_CODE;
- /****************************************************************************
- ** Function prototypes
- ****************************************************************************/
- extern void LED_ShowString(char * str);
- extern void LED_ShowNum(int i);
- //extern void LED_ShowTime(void);
- #endif