Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BSP-DISCO_F746NG LCD_DISCO_F746NG
Revision 0:8315d4f31e68, committed 2019-06-10
- Comitter:
- nhancap98
- Date:
- Mon Jun 10 11:33:27 2019 +0000
- Commit message:
- SPKT
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/BSP-DISCO_F746NG.lib Mon Jun 10 11:33:27 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/nhancap98/code/BSP-DISCO_F746NG/#862f171dda3c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LCD_DISCO_F746NG.lib Mon Jun 10 11:33:27 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/nhancap98/code/LCD_DISCO_F746NG/#cf10ae4cedd3
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Mon Jun 10 11:33:27 2019 +0000
@@ -0,0 +1,21 @@
+#include "mbed.h"
+#include "LCD_DISCO_F746NG.h"
+#include "stdio.h"
+LCD_DISCO_F746NG lcd;
+
+int main()
+{
+ lcd.DisplayStringAt(0, LINE(1), (uint8_t *)"NHOM 7", CENTER_MODE);//xu?t ra màn hình "nhom 7"
+ wait(1);
+
+ while(1)
+ {
+ lcd.Clear(LCD_COLOR_BLUE);
+ lcd.SetBackColor(LCD_COLOR_BLUE); //set màu n?n
+ lcd.SetTextColor(LCD_COLOR_WHITE); // set màu ch?
+ wait(0.3);
+ lcd.DisplayStringAt(0, LINE(5), (uint8_t *)"Hien Thi LCD", CENTER_MODE); // hi?n th? "Hien Thi LCD"
+ lcd.DisplayStringAt(0, LINE(6),(uint8_t*)"16119", CENTER_MODE); // hi?n th? "16119"
+ wait(1);
+ }
+}