//======================================================================== //ISODAT NT SCRIPT LANGUAGE (ISL) : Simple Script //======================================================================== // // History list // // Author Date Reason changes // --------------------------------------------------------------------------------------------------------------------- // // // // //------------------------------------------------------------------------------------------------------------------------- script Default //TODO: Replace with your name { //place your global variables in this block switches (EXCLUSIVE-) } //------------------------------------------------------------------------------------------------------------------------- //place your includes here //------------------------------------------------------------------------------------------------------------------------- include "lib\ConFlo_IV_Interface_Valves_lib.isl" //------------------------------------------------------------------------------------------------------------------------- function CleanUp() { } //------------------------------------------------------------------------------------------------------------------------- function InitScript() { } //------------------------------------------------------------------------------------------------------------------------- //this is the main point entry - this function is essential //------------------------------------------------------------------------------------------------------------------------- main() { number myState = 1; call SwitchSampleDiluter ("ConFlo IV Interface/SampDil 1", myState); call SwitchSampleSplit (myState); myState = 0; call SwitchSampleDiluter ("ConFlo IV Interface/SampDil 2", myState); call SwitchSampleDiluter ("ConFlo IV Interface/SampDil 3", myState); } //--------------------------------------------------------------------------------------------------------------------------