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:4fd09cbb532f
diff -r 000000000000 -r 4fd09cbb532f main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Oct 22 12:26:13 2015 +0000
@@ -0,0 +1,14 @@
+// Hello World! for the TextLCD
+
+#include "mbed.h"
+#include "TextLCD.h"
+
+TextLCD lcd(D9, D14, D15, PTB19, PTB18, A4); // rs, e, d4-d7
+
+int main()
+{
+ lcd.printf("You Fool! Stoorvogel! ");
+ wait(3);
+ lcd.cls();
+ lcd.printf("Stochastic Signals! \n We are the mBed!");
+}