pydnp3
pydnp3 copied to clipboard
Examples Documentation
I'm trying to use the examples but I'm having difficulty. Is there any documentation other than comments? I'm having some issues to see if there is anything that can help me figure out my issues. For instance, I was able to connect two devices using the example outstation and master scripts. However, trying it again, it doesn't work. I'm not sure why. I was trying to see if I had an issue with IP addresses but wasn't able to find anything on what they need to be. I also don't know if I can connect two outstations to the master.
You can check the docstrings with help. Just open a Python REPL and type help on the modules, methods, and functions. For example:
pip install pydn3
python
>>> import pydnp3
>>> help(pydnp3)
>>> help(pydnp3.asiodnp3.DNP3Manager)
Hi So far so good, but having trouble to get command_callback or collection_callback, in examples. Official documentation was on Automak website, but seemed that there went offline. Any other documentation about using the examples, or about command_callback error messages? I only get error codes, but not able to have a readable description. Thanks.