Morse Library (non-blocking sending), Cyclocomp'r
i wrote morse library, key feature of (to differentiate many others) doesn't block while sending; example, can check on sensor value while long message being played on speaker. on github.
in ultra-brief, can use this:
i wrote use in cyclocomputer (trip meter, histogram of speeds on ride) project, also on github.
in ultra-brief, can use this:
code: [select]
#define pin_status 13
ledmorsesender sender(pin_status);
void setup() {
sender.setup();
sender.startsending();
}
void loop() {
// other work, while you...
sender.continuesending();
}i wrote use in cyclocomputer (trip meter, histogram of speeds on ride) project, also on github.
Arduino Forum > Forum 2005-2010 (read only) > Software > Development > Morse Library (non-blocking sending), Cyclocomp'r
arduino
Comments
Post a Comment