Go to documentation repository
...
The message parameters are described in the table below.
Parameter | Description |
source_type<obj> | Object type (see the DDI file ( [OBJTYPE] section) ) |
source_id<id> | The object ID set when creating the object in Axxon PSIM (see Axxon PSIM's settings tree) |
action<react> | Action (see the DDI file (the [REACT] section) ) |
params<number> | The number of parameters passed, in decimal format |
param0_name<str1> | Parameter name |
param0_val<str2> | Parameter value |
Info | ||
---|---|---|
| ||
For working with DDI files, we recommend using the ddi.exe utility (see Section Using the ddi.exe Tool to Work with DDI files). |
Example. Sending a message to switch the telemetry to preset mode 4.
Code Block |
---|
CString msg= |
...
“CORE||DO_REACT|source_type<TELEMETRY>,source_id<1.1>,action<GO_PRESET>,params<2>,param0_name<preset>,param0_val<4>,param1_ |
...
name<tel_ |
...
prior>,param1_val<2>”; |
...
SendMsg(id,msg); |