Changeset 465

Show
Ignore:
Timestamp:
11/05/08 11:27:24 (5 years ago)
Author:
behrens
Message:

NXTmotor: remove "silent toggling" and move adaptive default settings in constructor
SendToNXT: add warning of ignoring Speedregulation in the case of MultipleMotorPorts?, disabled brakeAtTachoLimit=0 warning, add missing %

Location:
branches/livecd/RWTHMindstormsNXT
Files:
117 modified

Legend:

Unmodified
Added
Removed
  • branches/livecd/RWTHMindstormsNXT/@NXTmotor/NXTmotor.m

    r462 r465  
    118118            if nargin > 0 
    119119                obj.Port = propertyArgIn{1}; 
     120                 
     121                % disable SpeedRegulation if two motors are addressed 
     122                %  synchron modus --> disable SpeedRegulation 
     123                if numel(propertyArgIn{1}) > 1 
     124                    obj.SpeedRegulation = false; 
     125                end 
     126                 
    120127 
    121128                if nargin >= 2 
     
    185192                obj.Port = val; 
    186193                 
    187                 % disable SpeedRegulation if two motors are addressed 
    188                 %  synchron modus --> disable SpeedRegulation 
    189                 % note: silent changing, warning is not appropriate, since the default value of 
    190                 % SpeedRegulation is true. Thus, any constructor command with two motors would 
    191                 % throw a warning. 
    192                 if numel(val) > 1 
    193                     obj.SpeedRegulation = false; 
    194                 end 
     194%                 % disable SpeedRegulation if two motors are addressed 
     195%                 %  synchron modus --> disable SpeedRegulation 
     196%                 % note: silent changing, warning is not appropriate, since the default value of 
     197%                 % SpeedRegulation is true. Thus, any constructor command with two motors would 
     198%                 % throw a warning. 
     199%                 if numel(val) > 1 
     200%                     obj.SpeedRegulation = false; 
     201%                 end 
    195202            else 
    196203                error('MATLAB:RWTHMindstormsNXT:InvalidPort',... 
     
    219226                    'SpeedRegulation must be a boolean.'); 
    220227            end 
    221             % check if more than one port is addressed (synchron modus) 
    222             if (numel(obj.Port) > 1) && (val) 
    223                 error('MATLAB:RWTHMindstormsNXT:InvalidSpeedRegulation',... 
    224                     'SpeedRegulation can only applied to one motor (no synchron motors).'); 
    225             end 
     228%             % check if more than one port is addressed (synchron modus) 
     229%             if (numel(obj.Port) > 1) && (val) 
     230%                 error('MATLAB:RWTHMindstormsNXT:InvalidSpeedRegulation',... 
     231%                     'SpeedRegulation can only applied to one motor (no synchron motors).'); 
     232%             end 
    226233        end 
    227234        %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
  • branches/livecd/RWTHMindstormsNXT/@NXTmotor/SendToNXT.m

    r462 r465  
    66% 
    77%   SendToNXT(OBJ, HANDLE) or OBJ.SendToNXT(HANDLE) 
    8  
     8% 
    99% Description 
    1010%     SendToNXT(OBJ) or OBJ.SendToNXT sends the motor settings in OBJ to 
     
    8080end 
    8181 
    82 % check for "insane" parameter combinations 
    83 if (obj.TachoLimit == 0) && (obj.BrakeAtTachoLimit) 
    84     warning('MATLAB:RWTHMindstormsNXT:Motor:brakeAtTachoLimitWithNoTachoLimit', 'With TachoLimit == 0, using BrakeAtTachoLimit == true makes no sense!') 
     82% % check for "insane" parameter combinations 
     83% if (obj.TachoLimit == 0) && (obj.BrakeAtTachoLimit) 
     84%     warning('MATLAB:RWTHMindstormsNXT:Motor:brakeAtTachoLimitWithNoTachoLimit', 'With TachoLimit == 0, using BrakeAtTachoLimit == true makes no sense!') 
     85% end%if 
     86 
     87% check for "unsupported" parameter combinations 
     88if (numel(obj.Port) > 1) && (obj.SpeedRegulation == true) 
     89    warning('MATLAB:RWTHMindstormsNXT:Motor:SpeedRegulationForMultipleMotorPort', 'Motor object contains more than one port --> synchron modus is enabled; Thus, the SpeedRegulation will be ignored!') 
    8590end%if 
    86  
    87  
    8891 
    8992 
  • branches/livecd/RWTHMindstormsNXT/doc/examples/Example_1_PlayTone.html

    r462 r465  
    1212      <title>Example 1: Play Tone and Get Battery Level</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Example_1_PlayTone"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/examples/Example_2_ReadSoundSensor.html

    r462 r465  
    1212      <title>Example 2: Read Sound Sensor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Example_2_ReadSoundSensor"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/examples/Example_3_DriveAroundTable.html

    r462 r465  
    1212      <title>Example 3: Drive Around Table</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Example_3_DriveAroundTable"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/examples/Example_4_DriveUntilWall.html

    r462 r465  
    1212      <title>Example 4: Drive Until Wall</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Example_4_DriveUntilWall"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/examples/Example_5_NextGenerationUltrasound.html

    r462 r465  
    1212      <title>Example 5: Next Generation Ultrasound</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Example_5_NextGenerationUltrasound"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/examples/Example_6_ShinyRadar.html

    r462 r465  
    1212      <title>Example_6_ShinyRadar</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Example_6_ShinyRadar"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/examples/Example_7_DriveAroundTable_MotorClass.html

    r462 r465  
    1212      <title>Example 7: Drive Around Table v2</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Example_7_DriveAroundTable_MotorClass"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_CloseNXT.html

    r462 r465  
    1212      <title>COM_CloseNXT</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_CloseNXT"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_CollectPacket.html

    r462 r465  
    1212      <title>COM_CollectPacket</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_CollectPacket"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_CreatePacket.html

    r462 r465  
    1212      <title>COM_CreatePacket</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_CreatePacket"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_GetDefaultNXT.html

    r462 r465  
    1212      <title>COM_GetDefaultNXT</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_GetDefaultNXT"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_MakeBTConfigFile.html

    r462 r465  
    1212      <title>COM_MakeBTConfigFile</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_MakeBTConfigFile"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_OpenNXT.html

    r462 r465  
    1212      <title>COM_OpenNXT</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_OpenNXT"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_OpenNXTEx.html

    r462 r465  
    1212      <title>COM_OpenNXTEx</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_OpenNXTEx"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_ReadI2C.html

    r462 r465  
    1212      <title>COM_ReadI2C</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_ReadI2C"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_SendPacket.html

    r462 r465  
    1212      <title>COM_SendPacket</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_SendPacket"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/COM_SetDefaultNXT.html

    r462 r465  
    1212      <title>COM_SetDefaultNXT</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_COM_SetDefaultNXT"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/CalibrateCompass.html

    r462 r465  
    1212      <title>CalibrateCompass</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_CalibrateCompass"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/CloseSensor.html

    r462 r465  
    1212      <title>CloseSensor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_CloseSensor"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/Contents.html

    r462 r465  
    1212      <title>Contents</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Contents"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/DebugMode.html

    r462 r465  
    1212      <title>DebugMode</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_DebugMode"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetAccelerator.html

    r462 r465  
    1212      <title>GetAccelerator</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetAccelerator"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetCompass.html

    r462 r465  
    1212      <title>GetCompass</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetCompass"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetInfrared.html

    r462 r465  
    1212      <title>GetInfrared</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetInfrared"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetLight.html

    r462 r465  
    1212      <title>GetLight</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetLight"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetMemoryCount.html

    r462 r465  
    1212      <title>GetMemoryCount</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetMemoryCount"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetMotor.html

    r462 r465  
    1212      <title>GetMotor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetMotor"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetMotorSettings.html

    r462 r465  
    1212      <title>GetMotorSettings</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetMotorSettings"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetSound.html

    r462 r465  
    1212      <title>GetSound</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetSound"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetSwitch.html

    r462 r465  
    1212      <title>GetSwitch</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetSwitch"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/GetUltrasonic.html

    r462 r465  
    1212      <title>GetUltrasonic</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_GetUltrasonic"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MAP_GetCommModule.html

    r462 r465  
    1212      <title>MAP_GetCommModule</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MAP_GetCommModule"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MAP_GetInputModule.html

    r462 r465  
    1212      <title>MAP_GetInputModule</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MAP_GetInputModule"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MAP_GetOutputModule.html

    r462 r465  
    1212      <title>MAP_GetOutputModule</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MAP_GetOutputModule"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MAP_GetSoundModule.html

    r462 r465  
    1212      <title>MAP_GetSoundModule</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MAP_GetSoundModule"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MAP_GetUIModule.html

    r462 r465  
    1212      <title>MAP_GetUIModule</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MAP_GetUIModule"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MAP_SetOutputModule.html

    r462 r465  
    1212      <title>MAP_SetOutputModule</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MAP_SetOutputModule"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MOTOR_A.html

    r462 r465  
    1212      <title>MOTOR_A</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MOTOR_A"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MOTOR_B.html

    r462 r465  
    1212      <title>MOTOR_B</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MOTOR_B"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MOTOR_C.html

    r462 r465  
    1212      <title>MOTOR_C</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MOTOR_C"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/MotorRotateAbs.html

    r462 r465  
    1212      <title>MotorRotateAbs</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_MotorRotateAbs"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXC_MotorControl.html

    r462 r465  
    1212      <title>NXC_MotorControl</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXC_MotorControl"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_GetBatteryLevel.html

    r462 r465  
    1212      <title>NXT_GetBatteryLevel</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_GetBatteryLevel"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_GetCurrentProgramName.html

    r462 r465  
    1212      <title>NXT_GetCurrentProgramName</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_GetCurrentProgramName"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_GetFirmwareVersion.html

    r462 r465  
    1212      <title>NXT_GetFirmwareVersion</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_GetFirmwareVersion"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_GetInputValues.html

    r462 r465  
    1212      <title>NXT_GetInputValues</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_GetInputValues"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_GetOutputState.html

    r462 r465  
    1212      <title>NXT_GetOutputState</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_GetOutputState"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_LSGetStatus.html

    r462 r465  
    1212      <title>NXT_LSGetStatus</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_LSGetStatus"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_LSRead.html

    r462 r465  
    1212      <title>NXT_LSRead</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_LSRead"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_LSWrite.html

    r462 r465  
    1212      <title>NXT_LSWrite</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_LSWrite"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_MessageWrite.html

    r462 r465  
    1212      <title>NXT_MessageWrite</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_MessageWrite"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_PlaySoundFile.html

    r462 r465  
    1212      <title>NXT_PlaySoundFile</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_PlaySoundFile"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_PlayTone.html

    r462 r465  
    1212      <title>NXT_PlayTone</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_PlayTone"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_ReadIOMap.html

    r462 r465  
    1212      <title>NXT_ReadIOMap</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_ReadIOMap"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_ResetInputScaledValue.html

    r462 r465  
    1212      <title>NXT_ResetInputScaledValue</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_ResetInputScaledValue"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_ResetMotorPosition.html

    r462 r465  
    1212      <title>NXT_ResetMotorPosition</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_ResetMotorPosition"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_SendKeepAlive.html

    r462 r465  
    1212      <title>NXT_SendKeepAlive</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_SendKeepAlive"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_SetBrickName.html

    r462 r465  
    1212      <title>NXT_SetBrickName</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_SetBrickName"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_SetInputMode.html

    r462 r465  
    1212      <title>NXT_SetInputMode</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_SetInputMode"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_SetOutputState.html

    r462 r465  
    1212      <title>NXT_SetOutputState</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_SetOutputState"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_StartProgram.html

    r462 r465  
    1212      <title>NXT_StartProgram</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_StartProgram"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_StopProgram.html

    r462 r465  
    1212      <title>NXT_StopProgram</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_StopProgram"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_StopSoundPlayback.html

    r462 r465  
    1212      <title>NXT_StopSoundPlayback</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_StopSoundPlayback"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXT_WriteIOMap.html

    r462 r465  
    1212      <title>NXT_WriteIOMap</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXT_WriteIOMap"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/NXTmotor.html

    r462 r465  
    1212      <title>NXTmotor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_NXTmotor"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/OpenAccelerator.html

    r462 r465  
    1212      <title>OpenAccelerator</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_OpenAccelerator"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/OpenCompass.html

    r462 r465  
    1212      <title>OpenCompass</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_OpenCompass"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/OpenInfrared.html

    r462 r465  
    1212      <title>OpenInfrared</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_OpenInfrared"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/OpenLight.html

    r462 r465  
    1212      <title>OpenLight</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_OpenLight"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/OpenSound.html

    r462 r465  
    1212      <title>OpenSound</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_OpenSound"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/OpenSwitch.html

    r462 r465  
    1212      <title>OpenSwitch</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_OpenSwitch"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/OpenUltrasonic.html

    r462 r465  
    1212      <title>OpenUltrasonic</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_OpenUltrasonic"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/OptimizeToolboxPerformance.html

    r462 r465  
    1212      <title>OptimizeToolboxPerformance</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_OptimizeToolboxPerformance"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/ReadFromNXT.html

    r462 r465  
    1212      <title>ReadFromNXT</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_ReadFromNXT"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/ResetMotorAngle.html

    r462 r465  
    1212      <title>ResetMotorAngle</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_ResetMotorAngle"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/ResetPosition.html

    r462 r465  
    1212      <title>ResetPosition</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_ResetPosition"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SENSOR_1.html

    r462 r465  
    1212      <title>SENSOR_1</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SENSOR_1"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SENSOR_2.html

    r462 r465  
    1212      <title>SENSOR_2</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SENSOR_2"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SENSOR_3.html

    r462 r465  
    1212      <title>SENSOR_3</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SENSOR_3"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SENSOR_4.html

    r462 r465  
    1212      <title>SENSOR_4</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SENSOR_4"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SendMotorSettings.html

    r462 r465  
    1212      <title>SendMotorSettings</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SendMotorSettings"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SendToNXT.html

    r462 r465  
    1212      <title>SendToNXT</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SendToNXT"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SetAngleLimit.html

    r462 r465  
    1212      <title>SetAngleLimit</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SetAngleLimit"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SetMemoryCount.html

    r462 r465  
    1212      <title>SetMemoryCount</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SetMemoryCount"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SetMotor.html

    r462 r465  
    1212      <title>SetMotor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SetMotor"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SetPower.html

    r462 r465  
    1212      <title>SetPower</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SetPower"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SetRampMode.html

    r462 r465  
    1212      <title>SetRampMode</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SetRampMode"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SetTurnRatio.html

    r462 r465  
    1212      <title>SetTurnRatio</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SetTurnRatio"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SpeedRegulation.html

    r462 r465  
    1212      <title>SpeedRegulation</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SpeedRegulation"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/Stop.html

    r462 r465  
    1212      <title>Stop</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_Stop"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/StopMotor.html

    r462 r465  
    1212      <title>StopMotor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_StopMotor"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SwitchLamp.html

    r462 r465  
    1212      <title>SwitchLamp</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SwitchLamp"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/SyncToMotor.html

    r462 r465  
    1212      <title>SyncToMotor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_SyncToMotor"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/USGetSnapshotResults.html

    r462 r465  
    1212      <title>USGetSnapshotResults</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_USGetSnapshotResults"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/USMakeSnapshot.html

    r462 r465  
    1212      <title>USMakeSnapshot</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_USMakeSnapshot"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/WaitFor.html

    r462 r465  
    1212      <title>WaitFor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_WaitFor"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/WaitForMotor.html

    r462 r465  
    1212      <title>WaitForMotor</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_WaitForMotor"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/checkStatusByte.html

    r462 r465  
    1212      <title>checkStatusByte</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_checkStatusByte"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/display.html

    r462 r465  
    1212      <title>display</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_display"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/readFromIniFile.html

    r462 r465  
    1212      <title>readFromIniFile</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_readFromIniFile"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/textOut.html

    r462 r465  
    1212      <title>textOut</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_textOut"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/tictic.html

    r462 r465  
    1212      <title>tictic</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_tictic"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/functions/help/toctoc.html

    r462 r465  
    1212      <title>toctoc</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="script_toctoc"> 
    1616<link type="text/css" rel="stylesheet" href="../../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/AdvancedMotorControl.html

    r462 r465  
    1212      <title>Advanced motor control</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="AdvancedMotorControl"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/FunctionsOverview.html

    r462 r465  
    1212      <title>LEGO Mindstorms NXT Matlab Functions Overview</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="FunctionsOverview"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/OptimizePerformance.html

    r462 r465  
    1212      <title>Optimizing performance</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="OptimizePerformance"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/ToolboxVer2Guidelines.html

    r462 r465  
    1212      <title>RWTH - Mindstorms NXT Toolbox Version 2.00 Guidelines</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="ToolboxVer2Guidelines"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/Troubleshooting.html

    r462 r465  
    1212      <title>Troubleshooting</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="Troubleshooting"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/direct_commands.html

    r462 r465  
    1212      <title>NXT system commands</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="direct_commands"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/motor_control.html

    r462 r465  
    1212      <title>High level motor control</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="motor_control"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/pc_nxt_communication.html

    r462 r465  
    1212      <title>PC - NXT Communication</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="pc_nxt_communication"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/prepare.html

    r462 r465  
    1212      <title>Preparing Workspace</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="prepare"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/programming/sensor_control.html

    r462 r465  
    1212      <title>High level sensor control</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="sensor_control"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/tools/ToolboxBenchmark.html

    r462 r465  
    1212      <title>ToolboxBenchmark</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="ToolboxBenchmark"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css"> 
  • branches/livecd/RWTHMindstormsNXT/doc/tools/ToolboxTest.html

    r462 r465  
    1212      <title>Tool: ToolboxTest</title> 
    1313      <meta name="generator" content="MATLAB 7.7"> 
    14       <meta name="date" content="2008-11-04"> 
     14      <meta name="date" content="2008-11-05"> 
    1515      <meta name="m-file" content="ToolboxTest"> 
    1616<link type="text/css" rel="stylesheet" href="../style.css">