HebiRobotics/Matlab​Input

版本 1.2.0.0 (47.8 KB) 作者: Florian Enner
Library for getting keyboard and joystick input into MATLAB
427.0 次下载
更新时间 2023/1/20

MatlabInput allows MATLAB users to get input from keyboards and joysticks in a non-blocking manner. It contains two classes: HebiJoystick, and HebiKeyboard. HebiJoystick is a drop-in replacement for vrjoystick for users who don't have access to the Simulink 3D Animation toolbox. HebiKeyboard provides similar functionality, but for keyboard inputs.
Example:

% Add library
addpath('hebi');

% Display all currently pressed keys whenever shift is up
kb = HebiKeyboard();
while true
state = read(kb);
down = find(state.keys('a':'z')) + 'a';
if ~state.SHIFT
disp(char(down));
end
pause(0.01);
end

The library was tested on Windows, Linux, and OSX on MATLAB 2015b, 2016a, and 2016b. However, it should run on any version >= 2013b. It makes use of the Java library (JInput) and does not support code generation).

Readme: https://github.com/HebiRobotics/MatlabInput
Download: https://github.com/HebiRobotics/MatlabInput/releases

引用格式

Florian Enner (2024). HebiRobotics/MatlabInput (https://github.com/HebiRobotics/MatlabInput), GitHub. 检索来源 .

MATLAB 版本兼容性
创建方式 R2015a
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!

src/main/resources/matlab

src/main/resources/simulink

src/main/resources/simulink

无法下载基于 GitHub 默认分支的版本

版本 已发布 发行说明
1.2.0.0

description fix

要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库
要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库