Lab1-01_pc_communication_lite

Dependencies:   mbed

Revision:
0:2f78e9f9540b
diff -r 000000000000 -r 2f78e9f9540b main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Aug 10 01:50:43 2021 +0000
@@ -0,0 +1,9 @@
+#include "mbed.h"
+Serial pc(USBTX,USBRX,9600);
+int main()
+{
+    while (true) {
+        pc.printf("Hello World!\r\n");
+        wait_ms(500);
+    }
+}
\ No newline at end of file