Karl Hobley / Mbed 2 deprecated MorseOut_Test

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "MorseOut.h"
00003 
00004 //Outputs hello world in morse code to LED1
00005 
00006 MorseOut morse(LED1);
00007 
00008 int main() {
00009      morse.puts("hello world");
00010 }