Wago 750-881 + PowerFlex525?

somlioy

Member
Join Date
Jan 2011
Location
Localhost
Posts
27
Hello

Got a Wago 750-881 which is Ethernet/IP capable. I'm trying to configure it as a master in order to control several AB PowerFlex 525 VFDs using Ethernet/IP.

Does anyone how I can do this? What library is appropriate for this application?
 
I'm not sure that can be done easily. I've always set up the Wago controllers to be read by an EIP master such as a ControLogix or an M340.

I did write a protocol to read tags from a ControLogix a while back which I suppose could be modified to read from your drive, it's a mess though and certainly not ready for deployment.

I know that there's a library called EML.lib which may be what you're looking for but I've never monkeyed with it.

If it's not too much of a problem I recommend looking into Modbus. Wago's got an excellent Modbus extension which makes programming Modbus devices a cinch.

Good luck,

Yosi
 
Yeah, that whats I've figured.

The EML.lib certainly looks like a possibility. Looks like they're using the same lib in that Sick IVC camera application aswell.

Just need to find the ethernet/ip objects/instaces for the AB PowerFlex 525.
 
Alright, I'm successfully getting data from the drive, but I'm not quite sure how to convert it to a "readable" digit. I'm currently just testing with the "commanded frequency" parameter readout.

In the data array I got the following when 30Hz is commanded:

.DATA[1] = 184
.DATA[2] = 11

50Hz:
.DATA[1] = 136
.DATA[2] = 19

67Hz:
.DATA[1] = 44
.DATA[2] = 26

The array is defined as following:
DATA: ARRAY [1..2000] OF BYTE;

What am I looking at?
 
you are looking at the frequency.

solution 11*256+184
or data[2]*256+data[1]
the other datas are for voltage amperage etc.
 

Similar Topics

Hi, I have never used modbus communication in Codesys 2.3, any tips and tricks are much appreciated. The system is a Wago 750-881 that controls...
Replies
3
Views
1,847
Hello, Maybe it is just a simple problem, but I cannot solve it. I have a Wago 750-881 connected to a Beier HMI through IP TCP, the connection is...
Replies
0
Views
891
Hello, I am new to WAGO PLCs and e!****pit. I am struggling to program a 750-881 PLC since I am unable to see/add an application under the...
Replies
2
Views
2,343
I'm facing a problem with the 750-881 Controller of Wago. I created a visualisation ( page named plc_visu ) en it'shows up in the webbrowser. It...
Replies
1
Views
1,711
Hey Guys, Im trying to work out the Modbus memory map and the tags on the Beijer x2 HMI and 750-881 WAGO PLC. Have looked up the forum and found...
Replies
4
Views
4,315
Back
Top Bottom