How to suppress error notification with "Joystick Input"-block if user doesnt have gamepad connected?

11 次查看(过去 30 天)
Hi,
I am useing the "Joystick Input"-block in my simulink model. But the model stops working without a gamepad connected. Error: "Error reported by S-function 'joyinput' in '...': Joystick not connected". This is very bad, because I want to accieve just an optional usage of the gamepad. Does anyone konw how to solve this problem?

回答(1 个)

Jan Houska
Jan Houska 2015-8-31
You can put the Joystick Input block into an Enabled Subsystem. Then, you can control the behavior using the Enable input. When the subsystem is not enabled (Enable input is 0), the block inside the subsystem does not execute and if the joystick device is not present, no error is reported. Then, after you connect the device, you can just enable the subsystem by changing the Enable input to 1.
  2 个评论
Jan Houska
Jan Houska 2015-8-31
The following code should work:
joystickpresent = false;
try
vrjoystick(1);
joystickpresent = true;
catch ME
end
If joystick is not connected, ME.identifier is 'sl3d:vrjoystick:notconnected', so this should be probably checked to avoid confusion by other possible errors.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Simulation 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by