How to suppress error notification with "Joystick Input"-block if user doesnt have gamepad connected?
8 次查看(过去 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?
0 个评论
回答(1 个)
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 个评论
Walter Roberson
2015-8-31
Is there a way to query to see if the joystick is detected, with the result to be used as the Enable input?
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.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!