The final project of Embedde class.

Dependencies:   C12832 LM75B ESP-call MMA7660

LCD/LCD.h

Committer:
pkr7098
Date:
2021-06-03
Revision:
1:ed1c6618f739

File content as of revision 1:ed1c6618f739:

#ifndef _LCD_H
#define _LCD_H

#include "mbed.h"
#include "C12832.h"

extern Semaphore semaphoreLCD;
extern C12832  _lcd;


#define LCD_LOADING_TERM    500

void lcdInit(void);
void lcdShowLoadingSimbolStart(int x, int y);
void lcdShowLoadingSimbolTerminate(void);

#endif