1
0

Field & Web componnent (#13)

* add LICENSE (AGPL 3.0)

* add Web part

* Field (#12)

* ModbusAccessor finished and checked

* read and write Field done. pushToField to do

* field not finished, connection works

* read csv file and add some comments

---------

Co-authored-by: Nils Ritler <79571155+Slisls@users.noreply.github.com>
This commit is contained in:
Rémi Heredero
2023-06-02 14:26:46 +02:00
committed by GitHub
parent d58097d723
commit 1c05accfb8
11 changed files with 613 additions and 36 deletions

View File

@@ -0,0 +1,10 @@
package ch.hevs.isi.field;
import java.util.TimerTask;
public class PollTask extends TimerTask {
@Override
public void run() {
ModbusRegister.poll();
}
}