using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MECF.Framework.RT.Core.IoProviders.Siemens
{
    /// 
    /// 西门子的PLC类型,目前支持的访问类型
    /// 
    public enum SiemensPLCS
    {
        /// 
        /// 1200系列
        /// 
        S1200 = 1,
        /// 
        /// 300系列
        /// 
        S300 = 2,
        /// 
        /// 400系列
        /// 
        S400 = 3,
        /// 
        /// 1500系列PLC
        /// 
        S1500 = 4,
        /// 
        /// 200的smart系列
        /// 
        S200Smart = 5,
        /// 
        /// 200系统,需要额外配置以太网模块
        /// 
        S200 = 6
    }
}