led.h
Upload User: fy98168
Upload Date: 2015-06-26
Package Size: 13771k
Code Size: 1k
Category:

DVD

Development Platform:

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