Module/main.cpp
2024-01-18 11:42:56 +01:00

10 lines
211 B
C++

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