Play with your acquaintances transforming text into morse code.
NOTE FOR DEVELOPERS:
This program can also be used as a plugin or external service from other programs by eliminating code in your program and thus making it smaller and better.
To do this, you must declare the converter interface:
interface MorseP {
long [] convert (String str);
long [] convertB (String str);
}
-convert transforms the string into a vector of times in milliseconds
-convert B transforms the string into a numeric vector in which 0 is space, 1 is a point, 2 lines, 3 spaces between letters and 4 spaces between words.
The name of the service that your program should look for is "minimorse.intent.action.MINIMORSE"
If you use it and you see it useful, leave a nice comment.
:)