10 lines
211 B
C++
10 lines
211 B
C++
/* SIMPLE EXAMPLE: LED blinking */
|
|
import morse; // use module !!!
|
|
//////////////////////////////////////
|
|
int main () {
|
|
Morse morse (330);
|
|
for (;;) {
|
|
morse << "Hello world";
|
|
}
|
|
return 0;
|
|
}
|