Karl Hobley / Mbed 2 deprecated MorseOut_Test

Dependencies:   mbed

Revision:
0:0741e8af4e26
diff -r 000000000000 -r 0741e8af4e26 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Oct 27 17:37:33 2010 +0000
@@ -0,0 +1,10 @@
+#include "mbed.h"
+#include "MorseOut.h"
+
+//Outputs hello world in morse code to LED1
+
+MorseOut morse(LED1);
+
+int main() {
+     morse.puts("hello world");
+}