-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmidimap.cpp
12 lines (11 loc) · 1.39 KB
/
midimap.cpp
1
2
3
4
5
6
7
8
9
10
11
12
#include "midimap.h"
extern PadSettings padSettings[7] =
{
PadSettings{ .channel = 0, .note = 62, .trig_mode = trigType::keyboard, .velocity_curve = curveType::linear, .aftertouch_curve = curveType::linear, .piezo_disabled = 0, .qtouch_disabled = 0},
PadSettings{ .channel = 0, .note = 64, .trig_mode = trigType::keyboard, .velocity_curve = curveType::linear, .aftertouch_curve = curveType::linear, .piezo_disabled = 0, .qtouch_disabled = 0},
PadSettings{ .channel = 0, .note = 65, .trig_mode = trigType::keyboard, .velocity_curve = curveType::linear, .aftertouch_curve = curveType::linear, .piezo_disabled = 0, .qtouch_disabled = 0},
PadSettings{ .channel = 0, .note = 69, .trig_mode = trigType::keyboard, .velocity_curve = curveType::linear, .aftertouch_curve = curveType::linear, .piezo_disabled = 0, .qtouch_disabled = 0},
PadSettings{ .channel = 0, .note = 67, .trig_mode = trigType::keyboard, .velocity_curve = curveType::linear, .aftertouch_curve = curveType::linear, .piezo_disabled = 0, .qtouch_disabled = 0},
PadSettings{ .channel = 0, .note = 60, .trig_mode = trigType::keyboard, .velocity_curve = curveType::linear, .aftertouch_curve = curveType::linear, .piezo_disabled = 0, .qtouch_disabled = 0},
PadSettings{ .channel = 0, .note = 71, .trig_mode = trigType::keyboard, .velocity_curve = curveType::linear, .aftertouch_curve = curveType::linear, .piezo_disabled = 0, .qtouch_disabled = 0}
};