@@ -12,6 +12,8 @@ namespace MECF.Framework.Common.CommonData
{
public ModuleName ModuleName { get; set; }
+ public object Parameter { get; set; }
+
public Hand RobotArm { get; set; }
public Flip RobotFlip { get; set; }
@@ -123,7 +123,7 @@ namespace PunkHPX8_RT.Modules.EFEM
EfemCycleAction action = new EfemCycleAction();
action.Action = "Align";
- action.Parameter = _alignerAngle;
+ action.Parameter = sourceParameter.Parameter;
actions.Add(action);
}
EfemCycleAction pick = new EfemCycleAction();