 | HardwareItemUsage Enumeration |
Enumerates possible usages for a hardware item
Namespace:
LynceeTec.Interfaces
Assembly:
LynceeTec.Interfaces (in LynceeTec.Interfaces.dll) Version: 9.0.26418.0 , built 2021-10-22 08:45:14 UTC
Syntaxpublic enum HardwareItemUsage
public enum class HardwareItemUsage
Members
| Member name | Value | Description |
---|
| Unknown | -1 |
Undefined hardware item
|
| NotUsed | 0 |
Not used hardware item
|
| Real | 1 |
Physical hardware item
|
| Dummy | 2 |
Virtual hardware item, partially emulated to allow the code to run. Things like positions are simulated according to the received
instructions. Time to execute the operations is NOT simulated
|
| DummyWithTimeDelay | 3 |
Virtual hardware item, partially emulated to allow the code to run. Things like positions are simulated according to the received
instructions. Time to execute the operations is simulated, for example, a long move operation will take the time it would take the real
hardware to complete.
|
| External | 4 |
Placeholder for physical hardware not controlled via the Lyncée Tec API / SDK but by external code
|
See Also