Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 lines
509B

  1. #ifndef _LCD_H
  2. #define _LCD_H
  3. #include "stm32f10x.h"
  4. #define LCD 0
  5. void lcd_init(void);
  6. void AttenuatorConfig(void);
  7. void vDispInit( u8 mode,u8 contrast );
  8. void vDispClearLine(u8 ucRow);
  9. void vDispClear(void);
  10. void vDispFull ( void );
  11. void Display_Icon16(u8 ucRow, u8 ucCol, unsigned char *icon);
  12. void Display_Icon(u8 ucRow, u8 ucCol, unsigned char *icon,u8 size);
  13. void vDispStr(u8 ucRow, u8 ucCol, char *szData,unsigned char datalen);
  14. void HexToDec(u32 tempdata,u8* buf,unsigned char bufLen);
  15. #endif