How to check if a key is pressed in each iteration in simulink?
3 views (last 30 days)
Show older comments
Hi, I am controlling a system using simulink (analog input and output of real time toolbox) in which at each iteration I need to check if a key (for example "L" is pressed) and if the is key is pressed then the system do some extra things, For example I can create an embedded block and use an "if" statement to check if the "L" key is pressed. BUT I DO NOT know how to have access to key variable. by the way, "input" command is of NO use because it cease the simulation. Please help me out.
0 Comments
Accepted Answer
Kaustubha Govind
on 3 Oct 2011
I don't think this functionality is available in MATLAB, but you should be able to find an OS-specific API in C/C++ that lets you query this. For example, see Windows API Reference.
Once you have found the appropriate function, you can write a simple S-function to call into the API during simulation, or use the coder.ceval (formerly eml.ceval) directives to generate code that calls into the appropriate function from an (Embedded) MATLAB Function block.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!