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.
main.cpp@0:0741e8af4e26, 2010-10-27 (annotated)
- Committer:
- Kaedroho
- Date:
- Wed Oct 27 17:37:33 2010 +0000
- Revision:
- 0:0741e8af4e26
Who changed what in which revision?
User | Revision | Line number | New 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 | } |