Updated

Dependents:   PROJECTTEST

Committer:
Swabey89
Date:
Sat Jan 05 15:02:52 2019 +0000
Revision:
0:e400f2ebb772
Updated

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Swabey89 0:e400f2ebb772 1 #ifndef __LCD_display__
Swabey89 0:e400f2ebb772 2 #define __LCD_display__
Swabey89 0:e400f2ebb772 3
Swabey89 0:e400f2ebb772 4 #include "mbed.h"
Swabey89 0:e400f2ebb772 5 #include "main.h"
Swabey89 0:e400f2ebb772 6 #include "TextLCD.h"
Swabey89 0:e400f2ebb772 7 #include "sample_hardware.hpp"
Swabey89 0:e400f2ebb772 8 #include <string>
Swabey89 0:e400f2ebb772 9
Swabey89 0:e400f2ebb772 10 extern void LCD_display(void);
Swabey89 0:e400f2ebb772 11 extern void LCD_text(string text);
Swabey89 0:e400f2ebb772 12 extern void LCD_sdcardmount(string text, float waittime, DigitalOut LED);
Swabey89 0:e400f2ebb772 13 extern void LCD_toutISR(void);
Swabey89 0:e400f2ebb772 14
Swabey89 0:e400f2ebb772 15 #endif