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();
}