07-13-2025, 07:28 AM
Hi Eddie,
Looking just at the command LDCommPort.TXString("<t " + address + speed +"1 ">") as the rest appears to be using language aliases (share using Publish converts to standard SB without aliases).
TXString requires a single string, the following compiles with the string output for testing:
Maybe it is simply the extra " you have.
Looking just at the command LDCommPort.TXString("<t " + address + speed +"1 ">") as the rest appears to be using language aliases (share using Publish converts to standard SB without aliases).
TXString requires a single string, the following compiles with the string output for testing:
Code:
adresse = 3
geschw = 50
LDCommPort.TXString("<t " + adresse + " " + geschw +" 1>")
TextWindow.WriteLine("<t " + adresse + " " + geschw +" 1>")
Maybe it is simply the extra " you have.