RobotApp/RobotApp/Services/Robot/Actions/RobotLiftUpAction.cs
Đăng Nguyễn 6eeed8c7b4 update
2025-10-24 17:09:00 +07:00

17 lines
484 B
C#

namespace RobotApp.Services.Robot.Actions;
public class RobotLiftUpAction(IServiceProvider ServiceProvider) : RobotAction(ServiceProvider)
{
protected override async Task StartAction()
{
await Task.Delay(2000);
Status = VDA5050.State.ActionStatus.FINISHED;
ResultDescription = AgvAction is null ? ResultDescription : AgvAction.ResultDescription;
}
protected override Task ExecuteAction()
{
return base.ExecuteAction();
}
}