LightDetector.java :  » UnTagged » lejos-pccomms-android » lejos » robotics » Android Open Source

Android Open Source » UnTagged » lejos pccomms android 
lejos pccomms android » lejos » robotics » LightDetector.java
package lejos.robotics;

/*
 * WARNING: THIS CLASS IS SHARED BETWEEN THE classes AND pccomms PROJECTS.
 * DO NOT EDIT THE VERSION IN pccomms AS IT WILL BE OVERWRITTEN WHEN THE PROJECT IS BUILT.
 */

/**
 * A platform independent implementation for sensors that can detect white light levels.
 * @author BB
 *
 */
public interface LightDetector {
  
  /**
   * Returns the calibrated and normalized brightness of the white light detected.
   * @return A brightness value between 0 and 100%, with 0 = darkness and 100 = intense sunlight
   */
  public int getLightValue();
  // TODO: In future, if we decide to include calibration methods in LightDetector interface,
  // the API docs for getLightValue() should include:
  // * Use calibrateLow() to set the zero level, and calibrateHigh to set the 100 level.

  // TODO: Names: getLightValue, getLevel, getLightLevel, getLight()
  
  
  /**
   * Returns the normalized value of the brightness of the white light detected, such that
   * the lowest value is darkness and the highest value is intense bright light.
   * @return A raw value, between getLow() and getHigh(). Usually 
   * between 0 and 1023 but can be anything depending on hardware.
   */
  public int getNormalizedLightValue();
  
  /**
   * The highest raw light value this sensor can return from intense bright light.
   * @return
   */
  public int getHigh();

  /**
   * The lowest raw light value this sensor can return in pitch black darkness.
   * @return
   */

  public int getLow();
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.