-
Notifications
You must be signed in to change notification settings - Fork 3
SysEx Token List
Here is the list of different tokens with sysex messages (xx, y,ls,LS, ms,MS, r1,z5 etc) :
if (s == "xx"){return (ByteValue);}
if (s.endsWith("y") && !s.startsWith("y")){return (ByteChannel4Bit);}
if (s.startsWith("k") || s.startsWith("p") || s.startsWith("n") || s.startsWith("o")){return (GlobalVariable);}
if (s.startsWith("z")){return (ChecksumRolandJP8080);}
if (s.startsWith("w")){return (ChecksumWaldorfRackAttack);}
if (s.startsWith("u")){return (LUAToken);}
if (s.startsWith ("v")){return (FormulaToken);}
if (s == "yy"){return (ByteChannel);}
if (s == "LS"){return (LSB7bitValue);}
if (s == "MS"){return (MSB7bitValue);}
if (s == "ii"){return (Ignore);}
if (s == "ls"){return (LSB4bitValue);}
if (s == "ms"){return (MSB4bitValue);}
if (s == "r1"){return (RolandSplitByte1);}
if (s == "r2"){return (RolandSplitByte2);}
if (s == "r3"){return (RolandSplitByte3);}
if (s == "r4"){return (RolandSplitByte4);}
if (s == "tp"){return (CurrentProgram);}
if (s == "tb"){return (CurrentBank);}
Home | Code Snippets | FAQ