/usr/share/psychtoolbox-3/PsychHardware/PsychPowerMate.m is in psychtoolbox-3-common 3.0.14.20170103+git6-g605ff5c.dfsg1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | function varargout = PsychPowerMate(cmd, varargin)
% PsychPowerMate - A driver for the Griffin Technology PowerMate USB knob.
%
% Note:
%
% This driver is currently only for the PowerMate USB edition, not for the
% bluetooth product. It best supports modern Linux systems, e.g.,
% Ubuntu 14.04.2 LTS or later, Debian-8 or later, or other similar modern
% systems with version 2.9.0 or later of the "evdev" X11 input driver.
%
% Support on Apple OSX and Microsoft Windows is much more limited. Expect worse
% reliability, higher cpu load, higher latencies, less accurate timing. While
% on Linux, the current driver can internally record up to 53 full knob rotations
% without losing information, the Windows variant can at most record 5 rotations,
% and the OSX driver will probably not even manage to record one full rotation.
% To avoid loss of position data, you will need to call PsychPowerMate('Get')
% frequently on OSX and Windows, even if you do not need the information at that
% moment.
%
% On Windows, setting LED brightness does not work.
%
% The current driver can only address one PowerMate, as it does not have
% proper device selection code in place at the moment.
%
% Linux setup:
% ============
%
% You must install a specific xorg input configuration file for the PowerMate
% to be recognized. In a terminal window do:
%
% 1. cd into the Psychtoolbox working directory (output of PsychtoolboxRoot)
% 2. sudo cp PsychHardware/50-evdev-powermate.conf /usr/share/X11/xorg.conf.d/
% 3. Logout and login again.
%
% Interesting technical background info:
% ======================================
%
% Technical background info, copied from the Linux powermate.c device driver,
% written by William R Sowerbutts, the author of the Linux driver:
%
% "Testing with the knob I have has shown that it measures approximately 94 "clicks"
% for one full rotation. Testing with my High Speed Rotation Actuator (ok, it was
% a variable speed cordless electric drill) has shown that the device can measure
% speeds of up to 7 clicks either clockwise or anticlockwise between pollings from
% the host. If it counts more than 7 clicks before it is polled, it will wrap back
% to zero and start counting again. This was at quite high speed, however, almost
% certainly faster than the human hand could turn it. Griffin say that it loses a
% pulse or two on a direction change; the granularity is so fine that I never
% noticed this in practice."
%
% - The rotary resolution is therefore about 3.8298 degrees per "click" or unit.
%
% - The PowerMate can lose a click or two on a direction change, therefore can
% accumulate rotational error on each turn direction change.
%
% - The PowerMate wants to be sampled at 10 msec intervals according to its
% USB HID descriptor. Low-speed USB interrupt endpoint sampling interval
% duration must be a power of two, so it will actually get sampled at
% 8 msec intervals, for a maximum update rate of 125 Hz.
%
%
% Commands:
%
% handle = PsychPowerMate('Open')
% -- Open a connected Griffin PowerMate, return a handle to it.
%
%
% PsychPowerMate('Close', handle);
% -- Close previously opened PowerMate specified by 'handle'.
%
%
% PsychPowerMate('SetBrightness', handle, level);
% -- Change brightness of the LED of the PowerMate specified by 'handle'
% to 'level'. Level can be between 0 and 255. Note: This does not currently
% work on MS-Windows.
%
% Note: Currently 'handle' is ignored, so you can not select which one
% of multiple PowerMate's would get its brightness set and this only
% works reliably for a single PowerMate.
%
%
% [button, dialPos] = PsychPowerMate('Get', handle);
% -- Poll the PowerMate specified by 'handle', return the status
% of its 'button' 1 = Pressed, 0 = Released. Also return the current
% 'dialPos' dial position of its dial - its turning knob. Please note
% that the knob does not have a defined zero position. You can turn it
% endlessly in one direction. Turning in one direction will simply
% increment the 'dialPos' position, turning into the other direction
% will decrement it. See above comments on the accuracy and resolution
% of position reporting.
%
%
% secs = PsychPowerMate('WaitButton', handle);
% -- Wait for button press on the PowerMate specified by 'handle',
% return the GetSecs() time of press in 'secs'.
%
%
% secs = PsychPowerMate('WaitRotate', handle);
% -- Wait for knob rotation on the PowerMate specified by 'handle',
% return the GetSecs() time of rotation in 'secs'.
%
%
% Technical note: How to map physical USB bus location to a /dev/input/powermateXX
% symlink via a udev rule, then how to map that device file to a xinput device
% name for enumeration/selection by our driver. Follow the approach outlined
% at the bottom of this thread for dual-touchscreen setups with identical touchscreen:
%
% http://arstechnica.com/civis/viewtopic.php?f=16&t=1146846
%
% History:
% 08-Apr-2016 mk Written.
persistent turnval;
persistent buttonval;
persistent firstcall;
if ~IsLinux && isempty(firstcall)
firstcall = 0;
warning('This driver only works perfectly on Linux. Read help carefully for use on this legacy operating system.');
end
if nargin < 1 || isempty(cmd) || ~ischar(cmd)
help PsychPowerMate;
return;
end
if strcmpi(cmd, 'Open')
devId = [];
if IsLinux
% Enumerate all mouse devices:
[idx, devnames, devinfos] = GetMouseIndices('slavePointer');
% Search for 1st Griffin PowerMate:
for i=1:length(devnames)
if strcmp(devnames{i}, 'Griffin PowerMate')
devId = idx(i);
break;
end
end
if isempty(devId)
fprintf('PsychPowerMate: Could not find a Griffin PowerMate. Not plugged in or not configured? ''clear all'' might help.\n');
varargout{1} = [];
varargout{2} = [];
return;
end
% Return "mouse" device index:
varargout{1} = devId;
% Return a somewhat identifying location id. interfaceID is the
% Xinput id of the device, the best we have for differentiating
% between multiple PowerMate's.
varargout{2} = devinfos{i}.interfaceID;
% Create a keyboard queue for collecting button responses:
KbQueueCreate(devId);
end
if IsOSX || IsWin
LoadPsychHID;
devinfos = PsychHID('Devices');
% Search for 1st Griffin PowerMate:
for i=1:length(devinfos)
if devinfos(i).vendorID == 1917 && devinfos(i).productID == 1040
devId = devinfos(i).index;
break;
end
end
if isempty(devId)
fprintf('PsychPowerMate: Could not find a Griffin PowerMate. Not plugged in or not configured? ''clear all'' might help.\n');
varargout{1} = [];
varargout{2} = [];
return;
end
% Return "mouse" device index:
varargout{1} = devId;
% Return a somewhat identifying location id. locationID is the
% best we have for differentiating between multiple PowerMate's.
varargout{2} = devinfos(i).locationID;
% Start HID report reception from PowerMate, with 1 msecs max
% processing time allocated per pass:
options.secs = 0.001;
PsychHID('ReceiveReports', devId, options);
% Init variables for tracking knob state:
turnval(devId) = 0;
buttonval(devId) = logical(0);
if IsOSX
% Create a keyboard queue for collecting button responses:
KbQueueCreate(devId);
end
end
return;
end
if strcmpi(cmd, 'Close')
if length(varargin) < 1 || isempty(varargin{1})
error('PowerMate device handle missing.');
end
if IsLinux || IsOSX
KbQueueStop(varargin{1});
KbQueueRelease(varargin{1});
end
if IsOSX || IsWin
PsychHID('ReceiveReportsStop', varargin{1});
PsychHID('GiveMeReports', varargin{1});
end
return;
end
if strcmpi(cmd, 'SetBrightness')
if length(varargin) < 1 || isempty(varargin{1})
error('PowerMate device handle missing.');
end
if length(varargin) < 2 || isempty(varargin{2}) || ~isscalar(varargin{2}) || ~isnumeric(varargin{2}) || ~isreal(varargin{2})
error('Brightness level missing or invalid.');
end
% Changing parameters is done via USB control transfers,
% so open the USB device, then issue a control transfer,
% then close it again.
%
% Currently we can't select among multiple instances of
% the same type of device. Iow. the 'handle' is useless,
% the control transfer will affect whatever PowerMate
% comes first on the bus.
%
% The Linux event device provides a standardized way to set
% PowerMate properties via EV_MSC, MSC_PULSELED events,
% which would allow to select by device, but i'm too lazy
% for that cleaner approach atm.
usbHandle = PsychHID('OpenUSBDevice', hex2dec ('077d'), hex2dec ('0410'));
level = min(255, max(0, varargin{2}));
PsychHID('USBControlTransfer', usbHandle, hex2dec ('41'), 1, 1, level, 0);
PsychHID('CloseUSBDevice', usbHandle);
return;
end
if strcmpi(cmd, 'Get')
if length(varargin) < 1 || isempty(varargin{1})
error('PowerMate device handle missing.');
end
% Linux keeps track of live button state and turn angle, can just query:
if IsLinux
% Query proper "mouse" pointer device:
[xd, yd, buttons, fd, valuator] = GetMouse([], varargin{1});
% buttons(1) = PowerMate push button:
varargout{1} = buttons(1);
% valuator(3) is the dial position. valuators 1 and 2 are static dummies:
varargout{2} = valuator(3);
end
% OSX and Windows can not keep track of live state. Must derive button
% state and knob turn angle from accumulated deltas in HID reports:
if IsOSX || IsWin
accumlength = 0;
while 1
PsychHID('ReceiveReports', varargin{1});
reports = PsychHID('GiveMeReports', varargin{1});
if isempty(reports)
break;
end
accumlength = accumlength + length(reports);
for i=1:length(reports)
turnval(varargin{1}) = turnval(varargin{1}) + double(typecast(reports(i).report(2), 'int8'));
buttonval(varargin{1}) = logical(reports(i).report(1));
end
end
% MS-Windows can keep track of at most 512 reports aka PowerMate "clicks",
% if more reports arrive inbetween calls to 'Get', we will lose them and
% therefore have wrong knob position reporting from now on:
if accumlength >= 512 && IsWin
fprintf('PsychPowerMate: Processed %d samples, more than system limit of 512 samples!\n', accumlength);
warning('PsychPowerMate(''Get''): Input samples from PowerMate may have been lost, position reporting might be wrong!');
end
varargout{1} = buttonval(varargin{1});
varargout{2} = turnval(varargin{1});
end
return;
end
if strcmpi(cmd, 'WaitButton')
if length(varargin) < 1 || isempty(varargin{1})
error('PowerMate device handle missing.');
end
% Can use Kb queues on Linux and OSX for button handling:
if IsLinux || IsOSX
KbEventFlush(varargin{1});
KbQueueStart(varargin{1});
while 1
event = KbEventGet(varargin{1}, 1);
if ~isempty(event) && event.Pressed && event.Keycode == 1
break;
end
end
KbQueueStop(varargin{1});
% Return GetSecs time of button press:
varargout{1} = event.Time;
end
% No Kb queues on Windows for this - use hack:
if IsWin
PsychPowerMate('Get', varargin{1});
while ~PsychPowerMate('Get', varargin{1})
WaitSecs('YieldSecs', 0.001);
end
% Return GetSecs time of button press:
varargout{1} = GetSecs;
end
return;
end
if strcmpi(cmd, 'WaitRotate')
if length(varargin) < 1 || isempty(varargin{1})
error('PowerMate device handle missing.');
end
% On Linux kb queues also keep track of knob turns:
if IsLinux
KbEventFlush(varargin{1});
KbQueueStart(varargin{1});
while 1
event = KbEventGet(varargin{1}, 1);
if ~isempty(event) && event.Pressed && event.Keycode > 1
break;
end
end
KbQueueStop(varargin{1});
% Return GetSecs time of knob movement:
varargout{1} = event.Time;
end
% Must use HID report hack on OSX and Windows:
if IsOSX || IsWin
[dummy, baseRotate] = PsychPowerMate('Get', varargin{1});
while 1
[dummy, curRotate] = PsychPowerMate('Get', varargin{1});
if curRotate ~= baseRotate
break;
end
WaitSecs('YieldSecs', 0.001);
end
% Return GetSecs time of button press:
varargout{1} = GetSecs;
end
return;
end
error('Unknown command specified to PsychPowerMate. Read help PsychPowerMate for info.');
|