share

Dependencies:   mbed

lcd.h

Committer:
shaizeen
Date:
2015-11-13
Revision:
0:5dbeda619328

File content as of revision 0:5dbeda619328:

// LCD.h file
#ifndef LCD_H
#define LCD_H
#include "mbed.h"


void display_to_LCD(char value) ; //function to display characters on the LCD
void toggle_enable(void) ; //function to toggle the enable bit
void LCD_init(void) ; //function to initialise the LCD


#endif