List of Contributions

A N

Contact Details

A N


My Content

1 to 20 of 49 total
Posted By A N Mar 17, 2023 10:28:00 AM
Found In Egroup: Automation Control
\ view thread
As mentioned above, the only way to implement any AOI with Message Instructions is to use Rung Import. This will create all new message tags and will populate these with correct values. Some message values can be populated programmatically, but few are not, like tags and service code. So Import is ...
Posted By A N Mar 10, 2023 06:59:00 AM
Found In Egroup: Automation Control
\ view thread
Reading the manual linked above, I need to clarify some of my comments: 1. StationID (or Unit ID) should be set to 1 for this device (page 3) 2. Both functions 3 and 4 will give you the same result (page 4) 3. It does appear that you must use shift by -1 and use even number of registers. For ...
Posted By A N Mar 10, 2023 06:43:00 AM
Found In Egroup: Automation Control
\ view thread
Mike, First, I would try a simple thing: Setup Modbus TCP Server AOI on the same or a different PLC and try to read from that server, just to verify that Client AOI is functioning correctly on your PLC. Next, I would try to use even addresses instead of odd: like 2304 or maybe 2306. Modbus ...
Posted By A N Feb 28, 2023 08:01:00 AM
Found In Egroup: Networks
\ view thread
I am not familiar with this specific device, but quick search for the user manual points to this: Comm format set to Data-DINT assembly sizes should be at least 10 and 10 (32bit values) Also refer to this note: 11.6 Configuration with RSLogix 5000 When commissioning your EtherNet/IP™ network, ...
Posted By A N Feb 27, 2023 02:37:00 PM
Found In Egroup: Networks
\ view thread
This is correct behavior called Rapid Fault/Restore. If supervisor detected 5 faults in 30 seconds, then it will disable port 2. Rapid faults must be addressed as it's usually a hardware or cabling issue.
Posted By A N Feb 22, 2023 07:00:00 AM
Found In Egroup: Networks
\ view thread
Older Micrologix 1400 don't support "Set to Static", some will never respond to this CIP message with symptoms similar to what you have described. However, if you flash it to the most recent firmware, then it will work with "Set to Static" correctly. Since we are talking Micrologix, then worth to ...
Posted By A N Feb 22, 2023 06:48:00 AM
Found In Egroup: Advanced Software
\ view thread
I believe that Excel uses different line termination characters by default. If you try to use "Save As", then you will find at least 4 different CSV formats offered with one additional format under the "Export". You may need to experiment with them and maybe open CSV file in a Hex editor to see ...
Posted By A N Nov 15, 2022 11:08:00 AM
Found In Egroup: Networks
\ view thread
Hello, There are no issues to use multiple sockets at the same time, it all should work. For example Modbus TCP code allows use of multiple Client AOIs at the same time without any issues Make sure that you are not assigning Local ports manually, just let firmware do that. For 5380 controller ...
Posted By A N Sep 12, 2022 11:46:00 AM
Found In Egroup: Networks
\ view thread
I believe this device is ETAP, that uses the same housing as NATR. ETAP used to connect non-DLR capable device to DLR (PanelView in this example)
Posted By A N Aug 17, 2022 09:00:00 AM
Found In Egroup: Networks
\ view thread
The original SFP module 1783-SFP1GLX is for Single Mode fiber. 1783-SFP100FX is for multimode fiber only, it will not work with Single mode fiber. You need to check what exact fiber you are using and then get 100MB SFP module to that type of fiber.
Posted By A N Aug 16, 2022 03:01:00 PM
Found In Egroup: Networks
\ view thread
1783-BMS10CA does not support 1Gig SFP, it's only 100MB
Posted By A N Aug 10, 2022 11:47:00 AM
Found In Egroup: Networks
\ view thread
This example that you have is for ControlLogix. For CompactLogix 5380 you need to put only 2, 192.168.1.75 if controller is set for DLR. For dual IP mode, you need to use 3, 192.168.1.75 for port A1 or 4, 192.168.1.75 for port A2
Posted By A N Mar 24, 2022 12:24:00 PM
Found In Egroup: Automation Control
\ view thread
EWEB Test application is available in the attachment to the Technote AID 32962
Posted By A N Mar 24, 2022 12:01:00 PM
Found In Egroup: Automation Control
\ view thread
Quote: "Unfortunately, I'm not familiar with EWeb, " I believe you are talking about EWEB sample code and Test application. It actually works with all Rockwell Socket applications. EWEB was the first module that supported Sockets, therefore all examples carry it's name. All modern modules ...
Posted By A N Mar 23, 2022 11:45:00 AM
Found In Egroup: Networks
\ view thread
There is obvious issue, media counters must be 0 I suspect that you have forced speed on gigabit ports or drives. Both should remain in Auto. I am not drives expert, this may need to be moved to to drives.
Posted By A N Mar 23, 2022 10:43:00 AM
Found In Egroup: Networks
\ view thread
I can't give you troubleshooting advice without any fault details. But to your question, if Stratix GB ports are set to Auto and drives are set to Auto, then they will negotiate the 100/full without any issues. Forcing speed/duplex on one end and leaving Auto on another cable end will create ...
Posted By A N Mar 18, 2022 11:26:00 AM
Found In Egroup: Automation Control
\ view thread
I don't have code 0044 explanation, but I see on PLCTALK site that you found your typo in the message config.
Posted By A N Mar 14, 2022 06:13:00 PM
Found In Egroup: Automation Control
\ view thread
Nope, nobody asked or ever mentioned sending FF00 to set a bit. Unfortunately, you got misleading instructions from some spec and got confused. Let's move on, you know how to proceed now.
Posted By A N Mar 14, 2022 04:59:00 PM
Found In Egroup: Automation Control
\ view thread
Again, you are missing the point that Modbus.org gives you data on the wire that is used by developers and for troubleshooting. Typical user does not need these details. Because all Modbus implementations including Windows simulators, use easy to use wrappers and GUI. Maybe this will convince ...
Posted By A N Mar 14, 2022 04:29:00 PM
Found In Egroup: Automation Control
\ view thread
Whoever wrote this specification gave you misleading "on the wire" information instead of simple directions: Write value of "1" the coil 00173, slave 17 ,using command 5. Whatever actually goes on the wire is completely irrelevant to the user, unless someone wants to decode these packets. ...