LCD library files

Dependents:   ELEC350_Project2

LCDdisplay.hpp

Committer:
Swabey89
Date:
2018-12-28
Revision:
4:b51c2a72c348
Parent:
3:747b1be583fc
Child:
6:a0b47f581db9

File content as of revision 4:b51c2a72c348:

#ifndef __LCD_display__
#define __LCD_display__

#include "mbed.h"
#include "TextLCD.h"
#include "sample_hardware.hpp"

extern TextLCD lcd;

//TEST
extern Mutex LCDlock;
extern Timeout LCD_tout;
extern void LCD_toutISR(void);

void LCD_display(double temp, double pressure, float light);

#endif