LoadportCassetteState.cs 491 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Sorter.Common
  6. {
  7. public enum LoadportCassetteState
  8. {
  9. None, //Load sensor/Position sensor: All OFF
  10. Normal, //Load sensor/Position sensor: All ON
  11. Absent, //Load sensor: ON, Position sensor: 1 or 2: ON
  12. Unknown,//Load sensor: ON, Position sensor: All OFF
  13. //or Load sensor: OFF, Except Position sensor: All OFF
  14. }
  15. }