12-15-2008 11:24 AM
12-16-2008 08:06 AM
Hi ggardner,
if you only want to write your data ones, then you can use a shift register and write your data inside the acquisition loop to it. Use the "Write to Spreadsheet File" function to write it ones after your loop. If you need it with a button, then you can use a case structure inside your loop and insert the write function into the specified case.
Mike
12-16-2008 10:52 AM - edited 12-16-2008 10:53 AM
Hi ggardner,
You will want to use shared variables to transfer your data between the FieldPoint and your computer. Then you can just use the host VI on your computer to load the data from the shared variable into an array. Use a case structure or event structure to write that array to a file when a button is pressed. The simplest method for writing to a spreadsheet is the Write to Spreadsheet File VI, like Mike said.
The general idea is attached.
Will