StructuredTrash
Level-3
- Beiträge
- 1.169
- Reaktionspunkte
- 312
-> Hier kostenlos registrieren
Looking at the received data I find lots of '$R$N' control sequences. If I remember right, this is "carriage return/line feed" which is normally used to separate strings from each other when writing them to a file or printer.
I suggest to change the prefix and suffix settings in your receive FB:
Prefix:='';
Suffix:='$R$N';
Then you should get the single lines sent by the device, making it easier to understand what the device wants to tell you in general, and it should be easy to identify and separate the line which contains time and temperature value.
I suggest to change the prefix and suffix settings in your receive FB:
Prefix:='';
Suffix:='$R$N';
Then you should get the single lines sent by the device, making it easier to understand what the device wants to tell you in general, and it should be easy to identify and separate the line which contains time and temperature value.