Android Open Source - LampeTorche Morse Action






From Project

Back to project page LampeTorche.

License

The source code is released under:

MIT License

If you think the Android project LampeTorche listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
 *  MorseAction//from  w w w  .  j  a  va2s .c  o m
 *
 *  Copyright (c) 2014 Thierry Margenstern under MIT license
 *  http://opensource.org/licenses/MIT
 */
package tm.android.lampetorche;

/**
 * To be notified of morse action (dot or dash)
 * @see tm.android.lampetorche.Morse
 * @see tm.android.lampetorche.SosWorker
 */
public interface MorseAction {
    enum morseAction {LOUD,SILENCE}
    void doAction(morseAction morseAction) ;



}




Java Source Code List

tm.android.lampetorche.MorseAction.java
tm.android.lampetorche.MorseRenderer.java
tm.android.lampetorche.Morse.java
tm.android.lampetorche.ScreenActivity.java
tm.android.lampetorche.SosWorker.java
tm.android.lampetorche.Torche.java