/* * File: lcd.h * Author: Pekka Viljakainen * * Created on 10. helmikuuta 2018, 14:26 */ #ifndef LCD_H #define LCD_H #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif #endif /* LCD_H */ extern void lcd_line1(void); //function prototypes extern void lcd_line2(void); extern void lcd_cmd(unsigned char); extern void lcd_char(char); extern void e_togg(void); extern void lcd_init(void); extern void lcd_string(const char *s); extern void lcd_busy(unsigned char); // oli void //extern void lcd_32number(long); extern void lcd_8bitbinchar(unsigned int); extern void lcd_16number(unsigned int); extern void lcd_signed_char(signed char); extern void delay(void); extern void lcd_goto(unsigned char pos);