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_F429ZI LCD_DISCO_F429ZI mbed
Revision 0:631221bf7462, committed 2018-09-01
- Comitter:
- Gabriel_2112
- Date:
- Sat Sep 01 16:11:57 2018 +0000
- Commit message:
- Teste
Changed in this revision
diff -r 000000000000 -r 631221bf7462 BSP_DISCO_F429ZI.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/BSP_DISCO_F429ZI.lib Sat Sep 01 16:11:57 2018 +0000 @@ -0,0 +1,1 @@ +https://developer.mbed.org/teams/ST/code/BSP_DISCO_F429ZI/#53d9067a4feb
diff -r 000000000000 -r 631221bf7462 LCD_DISCO_F429ZI.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LCD_DISCO_F429ZI.lib Sat Sep 01 16:11:57 2018 +0000 @@ -0,0 +1,1 @@ +https://developer.mbed.org/teams/ST/code/LCD_DISCO_F429ZI/#dc55a068bc1a
diff -r 000000000000 -r 631221bf7462 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sat Sep 01 16:11:57 2018 +0000 @@ -0,0 +1,51 @@ +#include "mbed.h" +#include "LCD_DISCO_F429ZI.h" + +LCD_DISCO_F429ZI lcd; + +DigitalOut led1(LED1); + +int main() +{ + led1 = 1; + + BSP_LCD_SetFont(&Font20); + lcd.DisplayStringAt(0, LINE(1), (uint8_t *)"MBED EXAMPLE", CENTER_MODE); + wait(1); + + while(1) + { + lcd.Clear(LCD_COLOR_BLUE); + lcd.SetBackColor(LCD_COLOR_BLUE); + lcd.SetTextColor(LCD_COLOR_WHITE); + wait(0.3); + lcd.DisplayStringAt(0, LINE(4), (uint8_t *)"DISCOVERY", CENTER_MODE); + lcd.DisplayStringAt(0, LINE(5), (uint8_t *)"STM32F429ZI", CENTER_MODE); + wait(1); + + lcd.Clear(LCD_COLOR_GREEN); + + lcd.SetTextColor(LCD_COLOR_BLUE); + lcd.FillRect(10, 20, 50, 50); + wait(0.1); + lcd.SetTextColor(LCD_COLOR_BROWN); + lcd.FillCircle(80, 80, 50); + wait(0.1); + lcd.SetTextColor(LCD_COLOR_YELLOW); + lcd.FillEllipse(150, 150, 50, 100); + wait(0.1); + lcd.SetTextColor(LCD_COLOR_RED); + lcd.FillCircle(200, 200, 40); + wait(1); + + lcd.SetBackColor(LCD_COLOR_ORANGE); + lcd.SetTextColor(LCD_COLOR_CYAN); + BSP_LCD_SetFont(&Font24); + lcd.DisplayStringAt(0, LINE(7), (uint8_t *)"HAVE FUN !!!", CENTER_MODE); + wait(1); + + led1 = !led1; + wait(0.5); + } +} +
diff -r 000000000000 -r 631221bf7462 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sat Sep 01 16:11:57 2018 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/a7c7b631e539 \ No newline at end of file