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: TextLCD XBee mbed
Diff: main.cpp
- Revision:
- 0:8e4d5cb13640
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Fri Apr 20 05:23:50 2018 +0000
@@ -0,0 +1,10 @@
+#include "mbed.h"
+
+Serial pc(P7_4, P7_5); // tx, rx
+
+int main() {
+ pc.printf("Hello World!");
+ while(1) {
+ pc.putc(pc.getc());
+ }
+}
\ No newline at end of file