You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
551 B
22 lines
551 B
// Static variables
|
|
static final int PAGESELECTOR = 64;
|
|
static final int MFINAL = 9999;
|
|
|
|
// Button type definitions
|
|
static final int INDICATOR = 0;
|
|
static final int HOLD = 1;
|
|
static final int TOGGLE = 2;
|
|
|
|
// Control defaults definitions
|
|
static final int SLIDERDEFAULTVALUE = 63;
|
|
static final int FADERDEFAULTVALUE = 0;
|
|
|
|
// Control out definitions
|
|
static final int ON = 127;
|
|
static final int OFF = 0;
|
|
|
|
// MIDI status codes
|
|
static final int NOTEON = 0x90;
|
|
static final int NOTEOFF = 0x80;
|
|
static final int CTLCHG = 0xB0;
|
|
static final int PRGCHG = 0xC0;
|
|
|