/* * st7032i & splc792a i2c lcd controler * * File: i2c_lcd.h * Created: 2015/07/31 7:48:14 * Author: www.hetenko.org */ #define LCD_ST7032_SEND 0x7c extern void i2c_lcd_cmd(unsigned char cmd); extern void i2c_lcd_putch(unsigned char chr); extern void i2c_lcd_goto(unsigned char line, unsigned char pos); extern void i2c_lcd_clear(void); extern void i2c_lcd_init(unsigned char cont); extern void i2c_lcd_cursor(unsigned char mode); extern void i2c_lcd_contrast(unsigned char level); extern void i2c_lcd_setcgram();