02-17-2020 04:02 PM
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
02-17-2020 05:18 PM
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.
02-19-2020 12:20 PM
I honestly do not know how to fix this problem do you have any resources for solving this.
02-19-2020 01:37 PM
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.