The function sends the model and version of the device.
Function Menu | Block Diagram |
---|---|
![]() |
![]() |
Not available
Name | Type | Description |
---|---|---|
model |
int32 |
Numeric designation of the device model. |
version |
int32 |
The device firmware version, represented as an integer. The lower 2 digits are in the first byte, the middle 2 digits in the second, and the upper 2 digits in the third byte. |
For example, the device S-2435
with firmware v03.02.31
:
model
= 2435
version
= 197151
0x0003021F (197151 converted to HEX) 00 - unused; 03 - major version digit (3 in dec); 02 - middle version digit (2 in dec); 1F - minor version digit (31 in dec).
Not available