The final project of Embedde class.

Dependencies:   C12832 LM75B ESP-call MMA7660

Committer:
pkr7098
Date:
Thu Jun 03 07:09:55 2021 +0000
Revision:
2:37756b51ccdb
Parent:
1:ed1c6618f739
The final project of Embedde class.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pkr7098 1:ed1c6618f739 1 #ifndef _LCD_H
pkr7098 1:ed1c6618f739 2 #define _LCD_H
pkr7098 1:ed1c6618f739 3
pkr7098 1:ed1c6618f739 4 #include "mbed.h"
pkr7098 1:ed1c6618f739 5 #include "C12832.h"
pkr7098 1:ed1c6618f739 6
pkr7098 1:ed1c6618f739 7 extern Semaphore semaphoreLCD;
pkr7098 1:ed1c6618f739 8 extern C12832 _lcd;
pkr7098 1:ed1c6618f739 9
pkr7098 1:ed1c6618f739 10
pkr7098 1:ed1c6618f739 11 #define LCD_LOADING_TERM 500
pkr7098 1:ed1c6618f739 12
pkr7098 1:ed1c6618f739 13 void lcdInit(void);
pkr7098 1:ed1c6618f739 14 void lcdShowLoadingSimbolStart(int x, int y);
pkr7098 1:ed1c6618f739 15 void lcdShowLoadingSimbolTerminate(void);
pkr7098 1:ed1c6618f739 16
pkr7098 1:ed1c6618f739 17 #endif