19 lines
296 B
C
19 lines
296 B
C
/**
|
|
* @file lcd_controller.h
|
|
*
|
|
* @date Aug 14, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#ifndef LCD_CONTROLLER_H_
|
|
#define LCD_CONTROLLER_H_
|
|
|
|
#include "engine.h"
|
|
|
|
#define MAX_LCD_WIDTH 20
|
|
|
|
void initLcdController(void);
|
|
void updateHD44780lcd(void);
|
|
|
|
#endif /* LCD_CONTROLLER_H_ */
|