class Vissen::Input::Message::Aftertouch

From the MIDI Association:

> Polyphonic Key Pressure (Aftertouch). This message is most often sent > by pressing down on the key after it “bottoms out”.

Constants

STATUS

@see Message

Public Instance Methods

note() click to toggle source

@return [Integer] the note value.

# File lib/vissen/input/message/aftertouch.rb, line 15
def note
  data[1]
end
preassure() click to toggle source

@return [Integer] the preassure value.

# File lib/vissen/input/message/aftertouch.rb, line 20
def preassure
  data[2]
end