Copies a value from a source to the target variable.
The MOVE instruction copies a value from one location to another. When the action activates, it writes the source value into the destination variable. The source value is not modified.
This is the fundamental data-transfer instruction. Use it whenever you need to assign a specific value to a variable, load a setpoint, or transfer data between variables during a process step.
MOVEoverwrites the destination variable completely. Make sure this is the intended behavior before using it.
{GIF:HERE} - Adding a MOVE action to a step with name "variable_name", description "Description", and instruction set to MOVE
from automation_machine import ActionInstruction
step.add_action("variable_name", "Description", instruction=ActionInstruction.MOVE)
self.add_step())ActionInstruction.MOVE