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.
Diff: main.cpp
- Revision:
- 0:b3784d62a11e
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Oct 17 08:11:16 2017 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+#include "TextLCD.h"
+DigitalOut myled(LED1);
+TextLCD lcd(D8,D9,D4,D5,D6,D7);
+int main()
+{
+ lcd.printf("NUCLEO F103RB");
+ float i=0.0;
+ while(1) {
+ lcd.locate(0,1);
+ lcd.printf("%f",i);
+ i=i+0.5;
+ wait_ms(200) ;
+ }
+}