Files
MewtocolNet/MewtocolNet/Mewtocol/PLCEnums/OPMode.cs
Felix Weiß 614426207c Added missing raw byte array writing reading
- added ability to change run/prog mode
2022-06-21 14:15:07 +02:00

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,
}
}