Package org.veiset.coffew8.coffeepi

Source Code of org.veiset.coffew8.coffeepi.CoffeeReader

package org.veiset.coffew8.coffeepi;

import com.phidgets.InterfaceKitPhidget;
import com.phidgets.PhidgetException;

public class CoffeeReader {

  static InterfaceKitPhidget ik;

  /**
   *
   * @throws PhidgetException
   */
  public CoffeeReader() throws PhidgetException {
    ik = new InterfaceKitPhidget();
    ik.openAny();
    ik.waitForAttachment();
    System.out.println("Found Phidget-interface kit with serial: " + ik.getSerialNumber());
  }

  /**
   *
   * @return
   * @throws PhidgetException
   */
  public int readWeight() throws PhidgetException {
    return ik.getSensorRawValue(0);
  }

}
TOP

Related Classes of org.veiset.coffew8.coffeepi.CoffeeReader

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.