using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robots
{
 
    public enum RobotArmWaferStateEnum
    {
        /// 
        /// No location
        /// 
        NoLocation,
        /// 
        /// Unknown
        /// 
        Unknown,
        /// 
        /// Present
        /// 
        Present,
        /// 
        /// Absent
        /// 
        Absent,
        /// 
        /// Doubled
        /// 
        Doubled,
        /// 
        /// Cross slotted
        /// 
        CrossSlotted,
        /// 
        /// Error
        /// 
        Error,
        /// 
        /// Arm invalid
        /// 
        ArmInvalid,
    };
}