Implemented reporting and storing of raw data

Former-commit-id: db8352f02b4a703698c69618a8af6036d78f5b1d
This commit is contained in:
Ziver Koc 2016-01-04 22:50:26 +01:00
parent 2c59ae5693
commit d117e344c2
25 changed files with 271 additions and 141 deletions

View file

@ -27,7 +27,7 @@ public class TelstickSerialCommNexaOnOffTest {
System.out.println("Up and Running");
while(true) {
Thread.sleep(2000);
nexa.setEnable(true);
nexa.turnOn();
nexa.setUnit(0);
comm.write(nexa);
Thread.sleep(2000);
@ -36,7 +36,7 @@ public class TelstickSerialCommNexaOnOffTest {
Thread.sleep(2000);
nexa.setEnable(false);
nexa.turnOff();
nexa.setUnit(0);
comm.write(nexa);
Thread.sleep(2000);