Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
transsecsscripts [2020/07/20 23:42] wikiadmin |
transsecsscripts [2020/09/22 09:15] (current) wikiadmin |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== TransSECS Scripting Examples ====== | ====== TransSECS Scripting Examples ====== | ||
+ | ==== Devices TransSECS ==== | ||
- | ====Devices TransSECS==== | + | === Converting Raw Data === |
- | + | ||
- | ===Converting Raw Data=== | + | |
Normally you will read a value from a PLC, Database, OPCServer, etc. and use this value directly to set an ID value. For example, read a PLC register as an integer and set this value to a U4 (unsigned integer) type VID by selecting the Device Server and Tag for the VID. However, if you need to do a conversion on the raw data read from the data source, this can be done by scripting, calculating a new value, then setting this new value to the VID. Be sure that the VID type is defined for this calculated value. | Normally you will read a value from a PLC, Database, OPCServer, etc. and use this value directly to set an ID value. For example, read a PLC register as an integer and set this value to a U4 (unsigned integer) type VID by selecting the Device Server and Tag for the VID. However, if you need to do a conversion on the raw data read from the data source, this can be done by scripting, calculating a new value, then setting this new value to the VID. Be sure that the VID type is defined for this calculated value. | ||
Line 12: | Line 11: | ||
For this example we have added a String VID called " | For this example we have added a String VID called " | ||
- | < | + | < |
var TransSecsController = Java.type(" | var TransSecsController = Java.type(" | ||
var SecsFormat20 = Java.type(" | var SecsFormat20 = Java.type(" | ||
var SecsFormat54 = Java.type(" | var SecsFormat54 = Java.type(" | ||
- | + | status=incomingValue.getIntValue(); | |
- | //convert integer value to String and update the VID on a value change | + | //convert integer value to a String and update the VID on a value change |
//values are 0=Uninitialized 1=Ready To Start 2=Running 3=Completed | //values are 0=Uninitialized 1=Ready To Start 2=Running 3=Completed | ||
- | //if value is out of range, set status | + | //if value is out of range, set it to " |
try { | try { | ||
- | status=incomingValue.getIntValue(); | ||
- | stringValue=" | ||
switch (status) { | switch (status) { | ||
case 0: | case 0: | ||
Line 36: | Line 33: | ||
case 3: | case 3: | ||
stringValue=" | stringValue=" | ||
- | break; | + | default: |
- | } | + | |
+ | } | ||
tool=TransSecsController.findController(" | tool=TransSecsController.findController(" | ||
gh = tool.getGemHandler(); | gh = tool.getGemHandler(); | ||
- | gh.setValue(" | + | |
- | + | //get the current VID value and set this new value if this is a change | |
+ | currentValue = gh.getValue(" | ||
+ | |||
+ | //check that the value has changed before writing to the VID | ||
+ | if (!(currentValue.equals(stringValue))){ | ||
+ | | ||
+ | } | ||
} catch (e) { | } catch (e) { | ||
print(" | print(" | ||
- | print(e.stack)); | + | print(e.stack); |
} | } | ||
</ | </ | ||
+ | === Additional Examples === | ||
+ | [[scriptingexamples|TansSECS and MIStudio JavaScript Examples]] | ||
- | more examples coming soon! | + | [[devices|TransSECS Devices JavaScript Examples]] |