AB Communication,

roxtech

Member
Join Date
Mar 2008
Location
Township Lahore
Posts
198
Hi, I am useing micrologix 1400 plc communicate with mypin weighing indicator. I read the actual value on indicator in plc with modbus address 40225. Now problem is on indicator weight value is 19kg standstill while in plc reading switch between two figer (19kg actual value and 4864). Anyone face this kind of problem. please help to find out problem in plc or problem in indicator.
 
Just a wild guess have you tried byte swapping or word swapping? High to low.
 
If you use the "Swap Bytes" instruction, use different Source and Destination data table addresses.

Performing a SWPB on the same data table is just asking for confusion based on when the HMI happens to hit your database.
 
Dear Jeffkiper,
its Hex formate total five byte read.
First two byte for point and other three byte for weight before desimal point.for example we read D8FF310000. its mean D8FF is point(after desimal point and 310000 is weight data before desimal point. According to indicator manufacturer. write data from right to left is 000031.FFD8H.
000031= 49
FFD8 = 99938.
So total Actual value is 49.99938Kg.
further when we Swap point word(byte to byte, we did not get same reading as display of indicator.
 
Last edited:
If you can post your actual MicroLogix 1400 *.RSS program, or at least the relevant sections, that might help.

The value you are viewing switching back and forth between 19 (0x0013) and 4864 (0x1300) still suggests that you are using the Swap Bytes instruction incorrectly.

Do not use the Swap Bytes instruction with the same Source and Destination data table elements.

If you do so, the value you "see" in the RSLogix 500 data table monitor or ladder logic monitor will depend on the timing between the software update and the MicroLogix program scan.
 

Similar Topics

Hello All! I am writing today because I cannot figure this out for the life of me. Another site I am affiliated with keeps having their slc 5/03s...
Replies
16
Views
309
Hello, I am currently in the final week of my internship and I have encountered issues with communication between a PowerFlex 700 variable...
Replies
8
Views
154
Hi all. I have a Modbus ProSoft module in my setup with a capability of 30 clients (0-29), which I'm trying to monitor the Ethernet Connection...
Replies
0
Views
43
Hi folks, I have a Controllogix in communication with a zigbee coordinator using Logix AIO for modbus tcp. This zigbee coordinator have 3 slaves...
Replies
10
Views
339
Hello, i am using profibus as communication between plc and fanuc arm. I can easily send inputs from plc to arm, but i can't monitor any outputs...
Replies
0
Views
50
Back
Top Bottom