29 lines
374 B
C#
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,
|
|
|
|
}
|
|
}
|