Code Monkey home page Code Monkey logo

Comments (4)

pjkundert avatar pjkundert commented on July 20, 2024

I just tried reproducing this, using cpppo version 3.9.5 on a Mac:

import time
from repr import repr

import cpppo
from cpppo.server.enip import client

plc_ip_address          ='127.0.0.1'
d                       = cpppo.dotdict( { 'data': [] } )

with client.connector( host= plc_ip_address) as conn:
    while True:
        time_prev=time.time()
        req = conn.read("tag_1")
        try:
            assert conn.readable( timeout=2.0 ), "Failed to receive reply"
            rpy = next(conn)
            d.data.append(rpy.enip.CIP.send_data.CPF.item[1].unconnected_send.request.read_frag.data[0])#0
        except AssertionError:
            print "Response timed out!! Tearing Connection and Reconnecting!!!!!"
            break
        except AttributeError:
            print "Tag  not written:::Will try again::"
            break
        print "%5d: %s" % ( len( d.data ), d.data )
        time.sleep( 1 )

I first ran a simulator:

$ python -m cpppo.server.enip -v tag_1=DINT[100]

Then, I ran the above program:

$ python src/cpppo_connector_read.py
    1: [0]
    2: [0, 0]
    3: [0, 0, 0]
    4: [0, 0, 0, 0]
    5: [0, 0, 0, 0, 0]
...

Is this still happening for you?

from cpppo.

karyuv avatar karyuv commented on July 20, 2024

Hello Sir,
The same program works on simulated plc controller. But does not work when given the IP address of an actual PLC. But the programs function well on 3.9.4 on communicating with actual PLC

from cpppo.

karyuv avatar karyuv commented on July 20, 2024

Is there any significant updates which I would miss out on 3.9.5?. I tested the programs on 3.9.4 and it works great!!. So please advise. Thank you!!

from cpppo.

pjkundert avatar pjkundert commented on July 20, 2024

Support for the CIP STRING type, and cpppo.server.enip.get_attribute proxy.write support (the ability to write via the proxy API). And other minor fixes.

from cpppo.

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.