You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace HslCommunication.Profinet.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
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|