필터 지우기
필터 지우기

How to make MATLAB detect keyboard stroke?

조회 수: 291 (최근 30일)
M Min
M Min 2017년 4월 16일
답변: Amir Azadeh Ranjbar 2023년 10월 19일
Hi,
I want to write a code which detect left and right arrow stroke in keyboard.
I tried to use below kind of code but it shows crosshair and also interrupts the working of other line. (Making crosshair invisible is somewhat important in this case)
[~,~,button]=ginput(1);
switch button
case 28 %left
case 29 %right
end
Is there any better way to do it? Thanks!

채택된 답변

Nirav Sharda
Nirav Sharda 2017년 4월 18일
There are a couple of ways to achieve this. You can use the KeyPressFcn callback on the figure window. Here is an example.
h_fig = figure;
set(h_fig,'KeyPressFcn',@myfun);
The myfun here could have something like this.
function myfun(src,event)
disp(event.Key);
end
The other way to achieve this is to use ' waitforbuttonpress ' function. Here is an example code.
k = waitforbuttonpress;
% 28 leftarrow
% 29 rightarrow
% 30 uparrow
% 31 downarrow
value = double(get(gcf,'CurrentCharacter'))
I hope this helps.
  댓글 수: 6
Joseph Rucker
Joseph Rucker 2020년 4월 20일
How do you find out what the numbers for the keys are?
Caden Scharpf
Caden Scharpf 2020년 4월 21일
The numbers for the keys are their corresponding ASCII Charactershttps://www.petefreitag.com/cheatsheets/ascii-codes/

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

balandong
balandong 2020년 3월 23일
Maybe Im bit late to join the party. But you can consider this FEX submission KbTimer. It is MEX base thus quite fast

Amir Azadeh Ranjbar
Amir Azadeh Ranjbar 2023년 10월 19일

카테고리

Help CenterFile Exchange에서 기본 설정에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!