mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
21 lines
369 B
C#
21 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace MewtocolNet {
|
|
|
|
/// <summary>
|
|
/// CPU type of the PLC
|
|
/// </summary>
|
|
public enum OPMode {
|
|
/// <summary>
|
|
/// PLC run mode
|
|
/// </summary>
|
|
Run,
|
|
/// <summary>
|
|
/// PLC programming mode
|
|
/// </summary>
|
|
Prog,
|
|
}
|
|
|
|
} |