public
Description: A customizable Ruby-based MIDI drum controller for the Wii remote and nunchuk on OS X
Homepage: http://studiobleep.com
Clone URL: git://github.com/jmileham/drumchuk.git
drumchuk / note_numbers.rb
100644 20 lines (19 sloc) 0.356 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module DrumChuk
  module NoteNumbers
    GM_KICK = 36
    GM_SNARE = 38
    GM_HATS_CLOSED = 42
    GM_HATS_STOMP = 44
    GM_HATS_OPEN = 46
    GM_HATS_HALF_OPEN = 81
    GM_LOW_TOM = 43
    GM_MID_TOM = 47
    GM_HI_TOM = 48
    GM_CRASH_1 = 49
    GM_RIDE_1 = 51
    GM_CRASH_2 = 57
 
    SNARE_BOUNCE = 66
    RIMSHOT = 61
    SNARE_RIGHT = 40
  end
end