/* * File: lcd.h * Author: kazunoriko88 * * Created on November 2, 2015, 8:44 PM */ #ifndef LCD_H #define LCD_H #ifdef __cplusplus extern "C" { #endif void lcd_init( void ); void lcd_cls( void ); void lcd_locate( unsigned char x, unsigned char y ); void lcd_putc( char c ); void lcd_puts( const char *p ); #ifdef __cplusplus } #endif #endif /* LCD_H */