35 lines
686 B
C#
35 lines
686 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PLC
|
|
{
|
|
/// <summary>
|
|
/// PLC类型
|
|
/// </summary>
|
|
public enum PLCType
|
|
{
|
|
/// <summary>
|
|
/// 欧姆龙 Fins协议
|
|
/// </summary>
|
|
OmronFinsTCP,
|
|
/// <summary>
|
|
/// 欧姆龙 Fins协议
|
|
/// </summary>
|
|
OmronCipNet,
|
|
/// <summary>
|
|
/// 三菱 MC协议
|
|
/// </summary>
|
|
Mitsubishi,
|
|
/// <summary>
|
|
/// 基恩士 上位链路协议
|
|
/// </summary>
|
|
Keyence,
|
|
/// <summary>
|
|
/// 西门子 S7协议
|
|
/// </summary>
|
|
Siemens
|
|
}
|
|
}
|