RobotApp/RobotApp.Common.Shares/Enums/StateType.cs
Đăng Nguyễn d6fe1d9d52 update
2025-09-26 08:48:50 +07:00

39 lines
419 B
C#

namespace RobotApp.Common.Shares.Enums;
public enum RootStateType
{
Booting,
Operational,
}
public enum OperationalStateType
{
}
public enum AutomationStateType
{
Idle,
Executing,
Paused,
Charging,
Error,
Remote_Override,
}
public enum ManualStateType
{
Idle,
Active,
}
public enum SafetyStateType
{
Init,
Run_Ok,
SS1,
STO,
PDS,
SLS,
Error,
}