The function sends the IMSI of the SIM card.
| Function Menu | Block Diagram |
|---|---|
![]() |
![]() |
| Name | Type | Description |
|---|---|---|
SIM index |
bool |
SIM card slot number: 0 - external; 1 - internal |
| Name | Type | Description |
|---|---|---|
digits 8..0 |
int32 |
The number representing the lower 9 digits of the IMSI. |
digits 14..9 |
int32 |
The number representing the upper 6 digits of the IMSI. |
For example, the IMSI 250991039698855 will be represented as:
digits 8..0 = 39698855
digits 14..9 = 250991
In this example, for
digits 8..0, it is recorded as_39698855, not039698855. Leading zeros are not displayed when outputting numeric values.
The first three digits of the IMSI are MCC (Country code, for example, 250 – Russia).
The next two or three digits are MNC (Mobile network code, for example, 99 – Beeline).
All following digits are the MSIN (Mobile Subscriber Identification Number).
Not available