Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Netanel

Pages: [1]
1
General Discussions / PC6 File naming
« on: August 23, 2020, 11:07:08 PM »
Are there any rules or restrictions for the name of the PC6 file?

i asking because when i trying to open my files in another computer, i got empty ladder, like empty file.
When i rename the file on the source computer from "myproject.CSOF.001.V1.PC6" to  1.PC6 everything working well.

thanks

2
Technical support / RS485 sometimes not working well
« on: June 07, 2020, 09:52:53 AM »
I working with fmd1616 i try communicate with other controller Rs485 com3 , 8,n,1 baud=115200

Sometime the slave controller not respond for readmodbus command and sometimes yes.

When i working with computer and usb to 485 - the slave controller respond for all commands.

What can be the problem?
Thanks

3
Technical support / Re: FMD1616 - Open Socket TCP as server(slave)
« on: March 19, 2020, 02:54:21 AM »
 Thanks,
while i connect, disconnect, and reconnect, the port changes, can I define const(hard) port?

another question:

"The FMD1616 PLC server socket is always open" which type of server this?

i succeed to connect to FMD1616 PLC server
but i try to send the string "abc/n", i got error, what i did wrong?

how i read the data from the controller?

my c# code:

tcpclnt.Connect("192.168.1.5", 9080);
// use the ipaddress as in the server program
Console.WriteLine("Connected");
Console.Write("Enter the string to be transmitted : ");
String str = Console.ReadLine();
Stream stm = tcpclnt.GetStream();
ASCIIEncoding asen = new ASCIIEncoding();
byte[] ba = asen.GetBytes(str);
Console.WriteLine("Transmitting.....");
stm.Write(ba, 0, ba.Length);

4
Technical support / Re: FMD1616 - Open Socket TCP as server(slave)
« on: March 16, 2020, 11:11:07 PM »
"iTRiLOGI is a client that can connect to the PLC's server socket", FMD1616 can connect to Linux server socket?

5
Technical support / FMD1616 - Open Socket TCP as server(slave)
« on: March 16, 2020, 01:28:41 PM »
Hi

How can i open TCP Socket as server(slave)?

How can i open UDP Socket as Client?

Thanks


Pages: [1]