drive_lcd1602.h 449 B

12345678910111213141516171819
  1. #ifndef __DRIVE_LCD1602_H
  2. #define __DRIVE_LCD1602_H
  3. #include "stm32f10x.h"
  4. //void LcdShowStr(char x, char y, char *str);
  5. void LCDGPIO_Configuration(void);
  6. void Init_Lcd1602(void);
  7. void L1602_printf(char x,char y,char *p,...);
  8. void LCD1602_Write_Cmd(unsigned char cmd) ;
  9. void WriteLcd1602_String(char x,char y,char *p);
  10. void L1602_printf(char x,char y,char *p,...);
  11. //#define LCD602_Bin 1
  12. void LCD1602_Write_Cmd(unsigned char cmd) ;
  13. #endif