IMotionDriverError.cs 338 B

12345678910111213141516
  1. using SKMC.Api.Machine.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SKMC.Api.Motion.Driver
  8. {
  9. public interface IMotionDriverError
  10. {
  11. string GetAxisErrorInfo(short axisNo);
  12. List<MachineSlaveError> GetAllErrorType();
  13. }
  14. }