how do i find unassigned inputs in rs5000

stu

Member
Join Date
Aug 2005
Location
England
Posts
783
hi i am aware that in s7 you can find the usage of the inputs and output but does rs 5000 have the same function if so how do i find it? thanks
 
Stu, it's not that easy in RSL5K. There are several ways the inputs can be used.

They can be used directly
They can be aliased to a tag
They can be buffered by moving a whole input word into a DINT, then the DINT used throughout the program
The buffer word can be used directly
The buffer word can be aliased
They can be buffered by having an input going to a bool, then the bool is used throughout the program.

Finding out if they are used depends on how they are used. If they are used directly, you can cross-reference the input word (Local:2:I.Data) and it will return all the instances of that word. So you could then see if .0, .1, .2 and so on, are used.

In our machines, we take an input word and move it into a DINT. So Local:2:i.Data would be moved into InputSlot2 (DINT). Then we alias individual bits of InputSlot2 to tags. For example a proximity sensor called PX1 that is wired to input 0 on slot 2: Tag = PX1 - Alias = InputSlot2.0.

In our system, the easiest way to find unused tags is to cross-reference InputSlot2 (which will return a lit of results), then I can see what bits are unused in that word. I then create a new tag and alias it to the unused bit.
 

Similar Topics

Hi , Where i can find Mitsubishi PLC Card end of line & replacement model details. i am looking for Q02CPU replacement model. Please advice. thanks
Replies
2
Views
126
I have tested every screen and no single screen individually has this fault pop up, but when I compile and send to the PanelView it comes up. If I...
Replies
4
Views
172
Hi, One of my customers has an old fabric tensile testing machine. The IC # AD7501KN of its controller has malfunctioned. This IC is related to...
Replies
1
Views
77
Hello everyone, I am a student and would like to take the next step and learn FactoryTalk (Batch preferably) and how to create HMIs etc. Would...
Replies
4
Views
490
Hi, Have a look at this picture... How can I find out the memory address of this tag? It was created by adding it to DB "Data_block_1", but I...
Replies
6
Views
1,043
Back
Top Bottom