You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
399 B
C#
29 lines
399 B
C#
|
6 days ago
|
namespace Sln.Wcs.HoistSdk.Enum;
|
||
|
|
|
||
|
|
public enum ControlAction
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 移动
|
||
|
|
/// </summary>
|
||
|
|
Move,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 开启
|
||
|
|
/// </summary>
|
||
|
|
Start,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 停止
|
||
|
|
/// </summary>
|
||
|
|
Stop,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 复位
|
||
|
|
/// </summary>
|
||
|
|
Reset,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 校准
|
||
|
|
/// </summary>
|
||
|
|
Calibrate
|
||
|
|
}
|