using XP.Hardware.MotionControl.Abstractions; namespace XP.Hardware.MotionControl.Implementations { /// /// 虚拟摇杆实现 | Simulated Joystick Implementation /// 所有操作为空操作,始终报告摇杆未激活 /// All operations are no-ops, always reports joystick as inactive /// public class SimulatedJoystick : IJoystick { /// public bool IsJoystickActive => false; /// public void UpdateStatus() { // 虚拟摇杆无需从 PLC 轮询状态 | No PLC polling needed for simulated joystick } } }