LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

labview saving all excel files with 0s and 1's

I am trying to have it save the data from my temperature sensor (third tab), but its only saving 1 value and its in 0's and 1's. I am confused I don't know what I am doing wrong. I also have to have a time stamp, but cannot figure that out either

Download All
0 Kudos
Message 1 of 4
(2,214 Views)

You write the file once before any of the data collection has actually happened. You really need to understand how data flow programming works. Each of your loops, as well as the stacked frame structure (which you really should never use) and your case statement for writing the data run in parallel This is why you are writing the data to file BEFORE any actual data has been collected.



Mark Yedinak
Certified LabVIEW Architect
LabVIEW Champion

"Does anyone know where the love of God goes when the waves turn the minutes to hours?"
Wreck of the Edmund Fitzgerald - Gordon Lightfoot
0 Kudos
Message 2 of 4
(2,185 Views)

I honestly do not know how to fix this problem do you have any resources for solving this.

0 Kudos
Message 3 of 4
(2,139 Views)

You are getting zeroes and ones because the only thing you have writing to a file only happens once (like already mentioned), and is writing boolean data with is either true or false,  1 or 0.

 

Here are some resources.

How to Learn LV

LabVIEW Introduction Course - Three Hours
Learn LabVIEW

0 Kudos
Message 4 of 4
(2,126 Views)