TextLCD library for controlling various LCD panels based on the HD44780 4-bit interface

Dependents:   04LCD_Hello_Word gestionenergie

Fork of TextLCD by Simon Ford

Committer:
Eduvance
Date:
Tue May 27 07:22:43 2014 +0000
Revision:
9:befde34054fb
Parent:
TextLCD.h@8:308d188a2d3a
A

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Eduvance 9:befde34054fb 1 #ifndef LCD_H
Eduvance 9:befde34054fb 2 #define LCD_H
simon 1:ac48b187213c 3
simon 1:ac48b187213c 4 #include "mbed.h"
Eduvance 9:befde34054fb 5 void toggle_enable(void);
Eduvance 9:befde34054fb 6 void LCD_init(void);
Eduvance 9:befde34054fb 7 void display_to_LCD (char value);
simon 2:227356c7d12c 8 #endif
simon 2:227356c7d12c 9
simon 2:227356c7d12c 10