Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
scripting_for_plc_servers [2021/04/22 18:48] wikiadmin |
scripting_for_plc_servers [2021/09/10 16:09] (current) wikiadmin |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ==== TransSECS Devices - Scripting for PLC Servers ==== | + | ===== TransSECS Devices - Scripting for PLC Servers |
To write a value to a server in the devices the format is: | To write a value to a server in the devices the format is: | ||
Line 30: | Line 30: | ||
</ | </ | ||
- | **Set a value to a field in a message and send the message** | + | ==== Set a value to a field in a message and send the message |
Line 43: | Line 43: | ||
</ | </ | ||
- | Here's a more concreted | + | Here's a more concrete |
<code javascript> | <code javascript> | ||
Line 65: | Line 65: | ||
</ | </ | ||
- | **Register for Connection Status Notification in TransSECS Host Application** | + | ==== Register for Connection Status Notification in TransSECS Host Application |
In a GEMHost application the TransSECS controller publishes the status of the connection. | In a GEMHost application the TransSECS controller publishes the status of the connection. | ||
Line 98: | Line 98: | ||
The details of the connection status are [[programmatic_host_connection_status|described here]] | The details of the connection status are [[programmatic_host_connection_status|described here]] | ||
- | **Sending | + | ==== Writing |
If a message is received from the host contains a list of variable length it's easy to split this list and place it in registers on the PLC. | If a message is received from the host contains a list of variable length it's easy to split this list and place it in registers on the PLC. | ||
Line 134: | Line 134: | ||
</ | </ | ||
- | **Reading a Variable Length List from a PLC and updating a VID** | + | ==== Reading a Variable Length List from a PLC and updating a VID ==== |
The most challenging part of reading the list from the PLC is managing the length of the list. | The most challenging part of reading the list from the PLC is managing the length of the list. | ||
Line 229: | Line 229: | ||
</ | </ | ||
- | ** Reading a file and sending to a PLC Register** | + | ==== Reading a File and Storing as Binary Data in the PLC ==== |
- | This example uses the MelsecBinary server. | + | This example uses the Melsec Binary (MelsecBinary) server. |