PyPLC communication with siemens

When im running the device server pyPLC ,the server cannot recognize the plc ,i do all the required steps to etablish the modbus communication but nothing change i don't know what's the problem ?
Edited 7 years ago

The PyPLC is an attribute mapping layer on top of Modbus C++ device server.

Have you been able to configure the Modbus device?

Once you configured it, try if any of these calls returns any value:

ds = PyTango.DeviceProxy('your/modbus/device')
ds.ReadHoldingRegisters([0,10])
ds.ReadInputRegisters([0,10])

Keep on dancing,

http://www.tango-controls.org/resources/howto/how-fandango/
 
Register or login to create to post a reply.