Hi all,
I’m working on a project with the cr6 Logger to read values from many sensors wish are stored in two different tables files. One table files has data registered every 1 Min and the other file data registered every 10 min. those files are send with ftpClient to a server. Now I need to send only one file to the server and I want to know, how can I combine the data from the two files into one file and send it to a server so that I can have one file with data from the two table files.
Thanks, in advance,
Evrard
You would have to first combine the data together into a single file on the datalogger, then send it.
The instructions you would be using are FileOpen, FileRead, FileWrite, and FileClose.
It would be easiest to have a sinlge 1 minute table that has all the data values you need in it. In post processing, they can reduce 1 minute data down to 10 minute data.