ModbusSequentialDataBlock #1619
-
Hi, I have got a question about Sequential data blocks: What is the reason for assigning here an address (0x00)?
I read in the docs that 0xFF is the largest but what if I want to go higher? the hoding registers go from 40000 to 49999? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Please read the documentation that helps! 0x00 is the start address. Every register contains exactly 16bit, so that is your value limitation. Do not use setValues() to setup the datastore even though it might work (if so it is an accident). setValues() like getValues() operate on the array you define the object. |
Beta Was this translation helpful? Give feedback.
Please read the documentation that helps!
0x00 is the start address. Every register contains exactly 16bit, so that is your value limitation.
Do not use setValues() to setup the datastore even though it might work (if so it is an accident). setValues() like getValues() operate on the array you define the object.