Android Open Source - MorseCode Vibrator Output






From Project

Back to project page MorseCode.

License

The source code is released under:

Custom License You are free to download and edit the source code for personal use but not for commercial app purposes. We are going to use this code to create an app in the future.

If you think the Android project MorseCode 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

package com.csc.morsecode.handlers;
//from w  w  w  .jav a  2 s. co  m
import android.content.Context;
import android.os.Vibrator;

import com.csc.morsecode.MainActivity;
import com.csc.morsecode.Settings;
import com.csc.morsecode.data.Code;
import com.csc.morsecode.data.Encoding;

public class VibratorOutput implements Output {
  
  @Override
  public void output(Encoding encoding) {
    if ( MainActivity.globalContext == null ) {
      return;
    }
    long[] pattern = new long[ encoding.get.length + 1 ];
    pattern[0] = 0;
    int patternIndex = 1;
    for ( Code code : encoding.get ) {
      pattern[patternIndex] = (long) ( code.timeLength * Settings.getTimeScale() );
      patternIndex++;
    }
    Vibrator v = (Vibrator) MainActivity.globalContext.getSystemService( Context.VIBRATOR_SERVICE );
    v.vibrate(pattern, -1);
  }
  
  @Override
  public void output(String text) throws UnsupportedOperationException {
    throw new UnsupportedOperationException("Will not vibrate text at this time");
  }
  
}




Java Source Code List

com.csc.morsecode.MainActivity.java
com.csc.morsecode.PopMessage.java
com.csc.morsecode.Settings.java
com.csc.morsecode.data.CodeMapping.java
com.csc.morsecode.data.Code.java
com.csc.morsecode.data.Encoding.java
com.csc.morsecode.handlers.ConsoleOutput.java
com.csc.morsecode.handlers.Input.java
com.csc.morsecode.handlers.MessageReceiver.java
com.csc.morsecode.handlers.Output.java
com.csc.morsecode.handlers.TapInput.java
com.csc.morsecode.handlers.VibratorOutput.java