Giter VIP home page Giter VIP logo

Comments (15)

dmroeder avatar dmroeder commented on July 29, 2024

Are there any error messages you can share?
Are you calling .Close() after every read? If so, you should not, only call .Close() when you are done reading/writing.
What PLC are you working with?

from pylogix.

velmurugan1 avatar velmurugan1 commented on July 29, 2024

from pylogix.

dmroeder avatar dmroeder commented on July 29, 2024

I am unable to view your error, it appears that Avast has had it's way with it.

Please copy and paste the message directly here. Please also address the other questions I had.

from pylogix.

velmurugan1 avatar velmurugan1 commented on July 29, 2024

from pylogix.

dmroeder avatar dmroeder commented on July 29, 2024

One problem I see is that you are creating a new instance of PLC with each read. Try this instead:

from eip import PLC
import time

with PLC() as comm:
comm.IPAddress = '192.168.1.1'

while True:
    ret = comm.MultiRead("A","B","C","D")
    print ret
    time.sleep(0.5)

from pylogix.

dmroeder avatar dmroeder commented on July 29, 2024

for some reason, I can't get the formatting right tonight...

from pylogix.

velmurugan1 avatar velmurugan1 commented on July 29, 2024

from pylogix.

dmroeder avatar dmroeder commented on July 29, 2024

I'm saying with your original code, you are creating an instance of PLC() each iteration of your while loop. This is not the way to do it. You need to create an instance of PLC(), set it's IP address, then in your while loop, read your tags.

Did you try the example I provided above?

from pylogix.

dmroeder avatar dmroeder commented on July 29, 2024

Could I convince you to capture the error using Wireshark and email it to me?

edit: never mind, there is definitely something going on. I am looking into it.

from pylogix.

velmurugan1 avatar velmurugan1 commented on July 29, 2024

from pylogix.

dmroeder avatar dmroeder commented on July 29, 2024

Could you try a test for me when you get some time? Search for socket.settimeout and change both of them to socket.settimeout(5). This will allow for 5 seconds to receive data. See if that makes it more stable. If you do happen to wireshark the problem, please send it my way.

from pylogix.

dmroeder avatar dmroeder commented on July 29, 2024

Did you have any luck with the change I suggested?

from pylogix.

velmurugan1 avatar velmurugan1 commented on July 29, 2024

from pylogix.

dmroeder avatar dmroeder commented on July 29, 2024

There is no solution. You must read each element of your structure individually.

from pylogix.

velmurugan1 avatar velmurugan1 commented on July 29, 2024

from pylogix.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.