ln.ethercat/ln.ethercat/controller/remote/StupidLEDs.cs

17 lines
299 B
C#

using System;
namespace ln.ethercat.controller.remote
{
[Flags]
public enum StupidLEDs : int
{
NONE = 0,
ERROR = (1<<15),
RUN = (1<<1),
LOAD25 = (1<<2),
LOAD50 = (1<<3),
LOAD75 = (1<<4),
LOAD100 = (1<<15),
ALL = -1
}
}