start stop token

This commit is contained in:
Tim Zeuner 2023-02-07 21:29:24 +01:00
parent 6577c39a1b
commit 1f172a8b7a

View File

@ -29,7 +29,7 @@ public class Communication {
} }
public String telegram(boolean startStop, ArrayList<String> list){ public String telegram(boolean startStop, ArrayList<String> list){
String tel = ""; String tel = "aa";
tel += "1"; //Autonomous mode tel += "1"; //Autonomous mode
if(startStop){ if(startStop){
tel += ";1"; tel += ";1";
@ -44,6 +44,7 @@ public class Communication {
tel += ";1"; tel += ";1";
} }
} }
tel += "zz";
return tel; return tel;
} }