Sic03/FrameworkLocal/RTCore/IoProviders/Siemens/SiemensPLCS.cs

44 lines
854 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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