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 branches found
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|
% % 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,6 +73,8 @@ 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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment