Changes for page 08 Communication

Last modified by Iris on 2025/07/24 15:23

From version 4.15
edited by Stone Wu
on 2022/07/07 15:37
Change comment: There is no comment for this version
To version 4.17
edited by Stone Wu
on 2022/07/07 15:38
Change comment: (Autosaved)

Summary

Details

Page properties
Content
... ... @@ -371,4 +371,6 @@
371 371  Some values have units and decimals, such as 0.1%, 0.1Hz, 0.01ms, and the corresponding value conversion is required when reading and writing. The methods are as follows:
372 372  
373 373  1. When the unit is 0.1%: 1 represents 0.1%, 10 represents 1.0%, 1000 represents 100.0%. Therefore, writing 1000 means setting to 100.0%; on the contrary, if it is reading 1000, it means that the value is 100.0%;
374 -1. When the unit is 0.01ms: 1 means 0.01ms, 50 means 0.5ms, 10000 means 100ms. Therefore, writing 1000 means setting to 10.00ms; on the contrary, if 1000 is read, it means 10.00ms; The other units can be deduced by this, and integer remains unchanged.
374 +1. When the unit is 0.01ms: 1 means 0.01ms, 50 means 0.5ms, 10000 means 100ms. Therefore, writing 1000 means setting to 10.00ms; on the contrary, if 1000 is read, it means 10.00ms;
375 +
376 +The other units can be deduced by this, and integer remains unchanged.