Files
ATV_STDLabelAttach/Handler/swPLC/enumData.cs
atvstdla b707eee6ea ..
2025-10-02 14:38:46 +09:00

29 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project
{
public enum eSMStep
{
IDLE,
RUN,
}
public enum eMotList
{
Left=0,
Center,
Right,
}
public enum eMotControl
{
Stop,
Down,
Up,
}
}