MicroLogix1100: Data Logging via Network

Acidjazz54

Member
Join Date
Feb 2007
Location
Newark, NY
Posts
2
Hello all,

I am new to PLC networks and I'm wondering if anyone can help. We currently have a Micrologix 1100 that is controlling a system and I would like to log the date and time that an event happens. Once logged I would like to send that date/time to a PC on the PLC network if possible. I would like it in a spreadsheet if possible but I can deal with the data if it's there.

Any help would be much appreciated.

Thanks,

Dave
 
Acidjazz54 said:
Hello all,

I am new to PLC networks and I'm wondering if anyone can help. We currently have a Micrologix 1100 that is controlling a system and I would like to log the date and time that an event happens. Once logged I would like to send that date/time to a PC on the PLC network if possible. I would like it in a spreadsheet if possible but I can deal with the data if it's there.

Any help would be much appreciated.

Thanks,

Dave
I reckon will have to do this on the PC itself. For example, you can configure RSLinx as OPC server and easily extract data from there to any table for you want with any frequency you want
 
Try going to google, and typing in "OPC SQL".

You will have an immediate hit of a good assortment of connectors that go from an OPC server (RSLinx Pro, TopServer, et al) to just about any database out there. Most can even go the other way.
 
I have used the micrologix bult in data logging function, and it works great.
It does require a serial connection to extract the data.
Also the data, once retrieved, is immediately deleted from the PLC. So be careful not to lose the file.

In one of my applications, I have programmed logging into registers as well, which I can read in excel via RSLinx DDE.

My client uploads the data with the data log tool, but has lost the file a number of times. They then get me to come out and retrieve the data on my DDE link for a callout fee.

If you want to retrieve the data over ethernet, then DDE is the way to go. You can buy a cheaper single node licence RSLinx, then use DDE links into excel.

For the log, Use a seperate data file for each variable to be logged. I use indirect addressing, and increment the pointer each log, rotating back to zero when reaching 255. Use a seperate data file for each For the time/date, I create a single LONG with the code yymmddhhmm.

This method is not as good if you want more the 256 points logged, but can be modified to work.


===============EDIT=======================
I have just checked the new datalog extraction utility.
It works via RSLinx classic, so should work over ethernet. So the inbuilt datalog utility would be the best way to go in any case.
 
Last edited:

Similar Topics

Hi Everyone, I tried to do some searching and was unable to find what I'm looking for. sorry if this is not the appropriate place to post. I...
Replies
12
Views
3,127
So the micrologix 1100 has a built in web server. I have been following the user manual 1763-UM002. After I enter in my controller's IP address...
Replies
0
Views
1,194
Hi guys I need to convert N7 or F8 files in MIcrologix1100 to string file(ST), how to creat ST file in MicroLogix1100 PLC? Thanks
Replies
1
Views
1,263
Hi! I need help converting an old MicroLogix 1100 project to Micro 820. Project Details I have an old MicroLogix 1100 program that has been in...
Replies
0
Views
469
Hi all. I have been give a job to remove an old plc and screen and change it to a newer AB unit like the machine sitting next to it. The problem I...
Replies
4
Views
1,822
Back
Top Bottom