Skip to content
Snippets Groups Projects
Select Git revision
  • develop
  • master
  • v2.3.4
3 results

CMakeLists.txt

Blame
  • Forked from PSP Fanclub / AVRSimV2
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    COMSetSubCodes.m 503 B
    %COMSetSubCodes COMSetSubCodes enumeration for the brick
    %
    % Notes::
    % - COMSetSubCodes can be found in the EV3 documentation and source code
    % (bytecodes.h)
    
    classdef COMSetSubCodes < uint8
        enumeration
             SetOnOff (1)
             SetVisible (2)
             SetSearch (3)
             SetPin (5)
             SetPasskey (6)
             SetConnection (7)
             SetBrickName (8)
             SetMoveUp (9)
             SetMoveDown (10)
             SetEncrypt (11)
             SetSSID (12)
             SetMode2 (13)
        end
    end