필터 지우기
필터 지우기

command to read all current pressed keyboard keys

조회 수: 52 (최근 30일)
Roland Stange
Roland Stange 2017년 7월 6일
답변: Bruno Luong 2021년 9월 10일
Hi, i did not find an appropriate answer... is there a simple way without using callbacks to get the current pressed keys on the keyboard.
best, Roland
  댓글 수: 2
Roland Stange
Roland Stange 2017년 7월 6일
편집: Roland Stange 2017년 7월 6일
very nice function! Thanks for that. However, not exactly what i was searching for:-). The function shell not wait for an input, but read currently pressed keys. e.g.: a = whichKeysArePressed()
a =
1×2 cell array
'3' 'k'
for the case that the '3' and the 'k' keys are currently pressed by the user.

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

답변 (5개)

Guillaume
Guillaume 2017년 7월 6일
편집: Guillaume 2017년 7월 6일
From base matlab itself, it's not possible. There may be something in the psych toolbox.
Otherwise, on Windows, you would have to call the Win32 API GetKeyboardState either through loadlibrary or a mex file. Note that GetKeyboardState will only notice key changes that matlab itself has already seen.
Another option is to use .Net GetKeyStates. .Net is easier to call from matlab, but with this function you'll have to iterate over all the keys to get their status. Something like (completely untested code, I don't have matlab on this computer):
Net.addAssembly('System.Windows.Input');
akey = System.Windows.Input.Key.A; %use any key to get the enum type
keys = System.Enum.GetValues(akey.GetType); %get all members of enumeration
keynames = System.Enum.GetNames(akey.GetType);
keystates = arrayfun(@(key) bitand(System.Windows.Input.Keyboard.GetKeyStates(key), ...
System.Windows.Input.KeyStates.Down), ...
keys);
edit: after testing on computer with matlab, there was a number of bugs with the above, the two major ones being you can't arrayfun a .Net array, and some of the keys may not be valid keys to pass to GetKeyStates. In any case, since we're iterating over the keys, you can use IsKeyDown which has simpler syntax. So, without bugs:
NET.addAssembly('PresentationCore');
akey = System.Windows.Input.Key.A; %use any key to get the enum type
keys = System.Enum.GetValues(akey.GetType); %get all members of enumeration
keynames = cell(System.Enum.GetNames(akey.GetType))';
iskeyvalid = true(keys.Length, 1);
iskeydown = false(keys.Length, 1);
for keyidx = 1:keys.Length
try
iskeydown(keyidx) = System.Windows.Input.Keyboard.IsKeyDown(keys(keyidx));
catch
iskeyvalid(keyidx) = false;
end
end
Once you've run the above once (to get the list of valid keys) you can get the state of the keys with the simpler:
iskeydown(iskeyvalid) = arrayfun(@(keyidx) System.Windows.Input.Keyboard.IsKeyDown(keys(keyidx)), find(iskeyvalid));
  댓글 수: 1
Walter Roberson
Walter Roberson 2017년 7월 6일
I do not know the current state of the art, but earlier on it used to be the case that keyboards could typically only reliably distinguish two pressed keys beyond the modifier keys. A contact grid used to be used that had the property that if any three points of a rectangle of keys were pressed then the keyboard could not distinguish which three of the four were pressed.
Keyboards themselves typically encode events rather than key presses: "during this cycle, such-and-such a key was just pressed and this other key was released". The set of keys down at any one time was considered to be the set of keys for which a key-press event had been seen but a key release event had not been seen yet.

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


Bruno Luong
Bruno Luong 2021년 9월 10일
This File Exchange works well for me Hebirobotics
No toolbox is required and no need to open a figure() to catch the keypressed callback.
To simplify installation, download and use the compiled version on github.

Jan
Jan 2017년 7월 6일
편집: Jan 2017년 7월 6일
You can find such function in the FileExchange. Simply search for the keywords "get pressed kesy".

Roland Stange
Roland Stange 2017년 7월 6일
Thanks very much for your suggenstions. Perfect:-). I will have time next week to test!

balandong
balandong 2020년 3월 23일
Can consider this FEX submission KbTimer. It is MEX base thus quite fast

카테고리

Help CenterFile Exchange에서 Desktop에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by