Skip to content
Snippets Groups Projects
Commit d08b07ea authored by Maximilian Schnabel's avatar Maximilian Schnabel
Browse files

adjusted doc formatting

parent bf5fa80a
No related tags found
2 merge requests!7Keep going if mountpoint exists (persistent),!6Docs NXT compatibility
......@@ -27,14 +27,15 @@ classdef btBrickIO < BrickIO
% automatically chosen depending on the OS. Defaults to 'serial' on linux/mac
% systems, and to 'instrumentControl' on windows systems.
%
% ::
%
% Examples:
% % Connecting on windows |br|
% commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1); % |br|
% % Connecting on windows using MATLABs default serial port implementation for testing |br|
% commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1, 'backend', 'serial'); % |br|
% % Connecting on mac/linux |br|
% commHandle = btBrickIO('serPort', '/dev/rfcomm0'); % |br|
% Examples:
% % Connecting on windows
% commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1);
% % Connecting on windows using MATLABs default serial port implementation for testing
% commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1, 'backend', 'serial');
% % Connecting on mac/linux
% commHandle = btBrickIO('serPort', '/dev/rfcomm0');
%
properties
......@@ -72,13 +73,15 @@ classdef btBrickIO < BrickIO
% varargin: Any number of property names as strings, each followed by the
% desired value.
%
% Examples:
% % Connecting on windows
% commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1);
% % Connecting on windows using MATLABs default serial port implementation for testing
% commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1, 'backend', 'serial');
% % Connecting on mac/linux
% commHandle = btBrickIO('serPort', '/dev/rfcomm0');
% ::
%
% Examples:
% % Connecting on windows
% commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1);
% % Connecting on windows using MATLABs default serial port implementation for testing
% commHandle = btBrickIO('deviceName', 'MyEV3', 'channel', 1, 'backend', 'serial');
% % Connecting on mac/linux
% commHandle = btBrickIO('serPort', '/dev/rfcomm0');
%
% See also BTBRICKIO.SETPROPERTIES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment