CompactLogix Storing Values

selectionplc

Member
Join Date
Jan 2017
Location
Over there
Posts
9
Where should values such as set points or counter values be stored so they don't get overwritten by a future PLC code incremental update.

I am looking for suggestions or best practices.

Do most people load and read from a config file? What is maybe the simplest implementation?
 
What do you mean by "an incremental update" for a PLC? When PLC code is "updated" it is generally done by pulling the code off of the current machine, making changes to that particular file and then putting it back on the machine.

You can store values that might be tweaked from an HMI or such in something called "retentive memory" so that they are not lost on power cycle, or store them in the HMI and have the PLC attempt reading those values from the HMI on a power cycle as well.

That being said, I'm curious to hear what others have to say on the subject as well.
 
a)If you work online there's no need to worry about overwritten setpoints.

b) If you need to work offline, you can upload the application from the PLC, add/modify/delete the logic, and download it into the PLC.

c) Also it's possible to write/read values from the memory card (if the controller has a CF/SD card). In this case you'll need to write the logic for saving/retrieving data, including the HMI display to invoke those functions.
 

Similar Topics

I have a compact logix 1769-L35E processor that has A CF card inserted into it. What I am trying to do is store the current program from processor...
Replies
0
Views
1,011
So basically i have 2 queries : 1. I have a program file of S7-300 PLC which i want to migrate in RSLogix500.In short i want to convert my simatic...
Replies
15
Views
251
Hi everyone, i have a compact logic 1769-L18 PLC and I'm using FTalk View ME for the display. I wanted to do some visualization on Grafana. At...
Replies
1
Views
113
Does anyone know what the data transfer rate for this series of CompactLogix PLC's? 1769-L24ER-QB1B to be exact. Cheers.
Replies
1
Views
108
Does this instruction calculate values during a single scan, or does it require number of scans based on element count in the array? For Example...
Replies
3
Views
124
Back
Top Bottom