How to check if a key is pressed in each iteration in simulink?
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Kaustubha Govind
2011-10-3
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulink Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!