Karl Hobley / Mbed 2 deprecated MorseOut_Test

Dependencies:   mbed

Committer:
Kaedroho
Date:
Wed Oct 27 17:37:33 2010 +0000
Revision:
0:0741e8af4e26

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kaedroho 0:0741e8af4e26 1 #include "mbed.h"
Kaedroho 0:0741e8af4e26 2 #include "MorseOut.h"
Kaedroho 0:0741e8af4e26 3
Kaedroho 0:0741e8af4e26 4 //Outputs hello world in morse code to LED1
Kaedroho 0:0741e8af4e26 5
Kaedroho 0:0741e8af4e26 6 MorseOut morse(LED1);
Kaedroho 0:0741e8af4e26 7
Kaedroho 0:0741e8af4e26 8 int main() {
Kaedroho 0:0741e8af4e26 9 morse.puts("hello world");
Kaedroho 0:0741e8af4e26 10 }