led.h
上传用户:fy98168
上传日期:2015-06-26
资源大小:13771k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. /****************************************************************************
  2. ** Notice:  Notice: Copyright (c) 2007 Keybridge Co.Ltd. - All Rights Reserved
  3. **
  4. ** File Name: led.h
  5. **
  6. ** $Revision: $
  7. ** $Date: $
  8. **
  9. ** Description:
  10. ** 
  11. ** 
  12. ****************************************************************************/
  13. #ifndef _LED_H_
  14.     #define _LED_H_
  15.     #include <string.h>
  16. typedef struct
  17. {
  18.     unsigned char   show_code;  //显示字符
  19.     unsigned char   led_code;   // led 字符
  20. } T_LED_CODE;
  21. /****************************************************************************
  22. ** Function prototypes
  23. ****************************************************************************/
  24. extern void LED_ShowString(char * str);
  25. extern void LED_ShowNum(int i);
  26. //extern void LED_ShowTime(void);
  27. #endif