Package it.hakvoort.nia

Examples of it.hakvoort.nia.NiaDevice2$NiaDeviceReader


 
  static int counter = 0;
 
  public static void main(String[] args) {
    // create a NiaDevice or NiaDevice2
    NiaDevice2 nia = new NiaDevice2();
   
    // register this class as listener
    nia.addListener(new ExampleNiaReader());
   
    // set signed to false
    nia.setSigned(false);

    // start the NiaDevice
    nia.start();
   
    try {
      Thread.sleep(1000);
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
   
    // stop the NiaDevice
    nia.stop();
  }
View Full Code Here

TOP

Related Classes of it.hakvoort.nia.NiaDevice2$NiaDeviceReader

Copyright © 2018 www.massapicom. 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.