School project.

Dependencies:   Timezone NTPClient BSP_DISCO_F746NG Grove_temperature

Revision:
10:137cf2c92871
Parent:
6:aecab8e3acad
Child:
13:41debc0b9063
--- a/lcd_functions.h	Thu Jan 14 14:07:01 2021 +0000
+++ b/lcd_functions.h	Fri Jan 15 09:27:26 2021 +0000
@@ -1,14 +1,13 @@
 /**
-@file lcd_functions.h
-
-@brief This file contains functions for graphically dividing screen and outputting specific information to the display.
+@file    lcd_functions.h
+@author  Tu Tri Huynh
+@date    January 13, 2021
+@brief   This file contains functions for the LCD display.
+@section Useful information
 LCD size is (480, 272)
-Available font sizes Font8, Font12, Font16, Font20 or Font24
+Available font sizes are Font8, Font12, Font16, Font20 or Font24
+*/
 
-@author Tu Tri Huynh
-
-@date 1/13/2021
-*/
 #include "stm32746g_discovery_lcd.h"
 
 /**
@@ -44,7 +43,7 @@
     BSP_LCD_SetFont(&Font24);
     BSP_LCD_DisplayStringAt(0, 50, (uint8_t *)"SETUP", CENTER_MODE);
     BSP_LCD_SetFont(&Font16);
-    BSP_LCD_DisplayStringAt(0, 200, (uint8_t *)"Please set the building and room", CENTER_MODE);
+    BSP_LCD_DisplayStringAt(0, 200, (uint8_t *)"Please configure the unit", CENTER_MODE);
 }
 
 /**