17 lines
276 B
C
17 lines
276 B
C
#ifndef CHAR_LCD_H
|
|
#define CHAR_LCD_H
|
|
|
|
#include "i2c_lcd_pcf8574.h"
|
|
#include <esp_log.h>
|
|
|
|
#define CHAR_LCD_I2C_NUM I2C_NUM_0
|
|
|
|
#define LCD_ADDR 0x27
|
|
#define LCD_COLS 20
|
|
#define LCD_ROWS 4
|
|
|
|
extern i2c_lcd_pcf8574_handle_t lcd;
|
|
|
|
void init_char_lcd(void);
|
|
|
|
#endif /* CHAR_LCD_H */ |