Skip to content

Commit 23a87b1

Browse files
committed
Added some comments to multiclamp device
1 parent 1eca5ef commit 23a87b1

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/main/matlab/+symphonyui/+builtin/+devices/MultiClampDevice.m

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,17 @@
33

44
methods
55

6-
function obj = MultiClampDevice(name, channel, serialNumberOrComPort, deviceNumber)
6+
function obj = MultiClampDevice(name, channel, serialNumberOrComPort, deviceNumber)
7+
% Constructs a MultiClamp device.
8+
%
9+
% If you are using MultiClamp 700A Commander you must provide four arguments: a device name, the amp
10+
% channel, the amp COM port, and the amp device number (AKA AxoBus ID). The COM port and device number may
11+
% be provided as empty matrices (i.e. []) to attempt to have them auto-detected.
12+
%
13+
% If you are using MultiClamp 700B Commander you may provide two or three arguments: a device name, the amp
14+
% channel, and the amp serial number. The serial number may be provided as an empty matrix (i.e. []), or not
15+
% provided at all, to attempt to have it auto-detected.
16+
717
NET.addAssembly(which('Symphony.ExternalDevices.dll'));
818

919
if nargin == 2

0 commit comments

Comments
 (0)