using FLY.OBJComponents.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.Thick.FilmCasting.Cap.Common
{
    public class ERRNOs : FLY.Thick.Base.Common.ERRNOs
    {
        public static new ERRNOs Instance { get; } = new ERRNOs();

        public ERRNOs() 
        {
        }

        public ERRNO ERRNO_CAPSENSOR_DISCONNECTED = new ERRNO() { Code = 73, Descrption = "电容传感器连接断开" };
        public ERRNO ERRNO_CAPSENSOR_LIFTUP = new ERRNO() { Code = 76, Descrption = "电容传感器被现场操作抬起" };
        public ERRNO ERRNO_NOSYNC = new ERRNO() { Code = 74, Descrption = "设备未同步" };
        public ERRNO ERRNO_CAPSENSOR_FILMBREAK = new ERRNO() { Code = 77, Descrption = "电容传感器保护装置触发" };
    }
}