TAGs, supported? #1414
-
Hi, thanks for support this, its useful for learning! And I am still learning! So thats why my question. Does pymodbus support TAGs? quote " Is that a thing I can do with pymodbus? I've not seen anything in the docs to suggest it is. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
you are asking the wrong question, the correct question is does the modbus protocol support tags, and the answer to that is no...and as a consequence neither do pymodbus. I think you have taken the quote a bit out of context, the quote talks about how to use allocate data in the server (the memory model) which in pymodbus terms is the server. We have a simulator module that do exactly that for the basic types. Some more modern protocols use tags for communication, but they depend on relative strong connections, while a protocol like modbus can run on very slow connections. |
Beta Was this translation helpful? Give feedback.
I think you need to start by reading the modbus protocol definition. You are mixing server/client issues.