03-28-2011 08:09 PM
I'm new user of Labview.
The attached picture shown the string that i get from the PIC. So how can i convert the input string to the expected format?Between, it is any problem of
the write to measurement file?
Thanks.
03-28-2011 09:30 PM
The read string:
AN000293
AN is a initial character and 00 means sensor number (in case i need to use 12 temp sensors) and the final four digit is the value of the temperature (degree celsius).
Need help!!!
03-28-2011 10:33 PM
Have a look at the string subset block.
03-29-2011 02:03 AM
use scan from string with format AN%2d%4d => this will split the string up in 2 parts => sensor and value.