Hi RabbitZ,
You can trigger the FTP transfer using any terminal software (Hyperterminal, Putty, Realterm, etc) via either TCP/IP (Ethernet/ USB cable + DTUsb) or SERIAL (DB9/ USB cable).
If you wish to create an automatic file transfer for the unit, you can create a dedicated schedule which responsible to trigger this transfer, then have one FTP transfer syntax as its member. In your case if you wish to use Filezilla with 1 hour transfer interval then.
RC1H
DO{COPYD dest="ftp://user:password@address/?(timestamp).csv" format=csv start=new}
The above sample will automatically send the data every hour at 0 minute (the logger interval is synch to midnight). The data cutoff occurs on a successful transfer in which the logger will create a flag indicate the old transfer and the next transfer.
If you wish to have a different time frame for the transfer, you can change the schedule interval and use CRON setting (11:59 pm?)
RC[0:59:23:*:*:*]
DO{COPYD dest="ftp://user:password@address/?(timestamp).csv" format=csv start=new}
The code will trigger a transfer one minute before midnight and it also becomes the transfer flag for the next transfer.
Best regards,
dataTaker Expert
Hi RabbitZ,
You can trigger the FTP transfer using any terminal software (Hyperterminal, Putty, Realterm, etc) via either TCP/IP (Ethernet/ USB cable + DTUsb) or SERIAL (DB9/ USB cable).
If you wish to create an automatic file transfer for the unit, you can create a dedicated schedule which responsible to trigger this transfer, then have one FTP transfer syntax as its member. In your case if you wish to use Filezilla with 1 hour transfer interval then.
````
RC1H
DO{COPYD dest="ftp://user:password@address/?(timestamp).csv" format=csv start=new}
````
The above sample will automatically send the data every hour at 0 minute (the logger interval is synch to midnight). The data cutoff occurs on a successful transfer in which the logger will create a flag indicate the old transfer and the next transfer.
If you wish to have a different time frame for the transfer, you can change the schedule interval and use CRON setting (11:59 pm?)
````
RC[0:59:23:*:*:*]
DO{COPYD dest="ftp://user:password@address/?(timestamp).csv" format=csv start=new}
````
The code will trigger a transfer one minute before midnight and it also becomes the transfer flag for the next transfer.
Best regards,
dataTaker Expert