Hi,
I Want the nano-10 to create a text file containg data from DM1 to DM50.
I tried using the code below but no file is created in the fileservice folder. I have a direct ethernet port to port
connection between the pc and plc. What could I be missing?
PRINT #4 "<RemoteFS 192.168.1.2:9080>" // have also tried localhost IP: 127.0.0.1:9080
PRINT #4 "<WRITE TestFile.txt>"
FOR I=1 To 50
PRINT #4 DM;" ";
NEXT
PRINT #4
PRINT #4 "</RemoteFS>"