Module: MIDIEvents::SystemExclusive
- Includes:
- MIDIEvents
- Defined in:
- lib/midi-events/system_exclusive.rb,
lib/midi-events/messages.rb
Overview
MIDI System-Exclusive Messages (SysEx)
Defined Under Namespace
Modules: Builder, InstanceMethods Classes: Command, Message, Node, Request
Constant Summary collapse
- ID =
0x0- DELIMITER =
{ start: 0xF0, finish: 0xF7 }.freeze
- DISPLAY_NAME =
'System Exclusive'.freeze
Constants included from MIDIEvents
ChannelPressure, Controller, PolyAftertouch, PolyPressure, PolyphonicPressure, VERSION
Class Method Summary collapse
- .included(base) ⇒ Object
-
.new(*bytes) ⇒ Object
Convert raw MIDI data to a SysEx message object Shortcut to Builder.build.
Methods included from MIDIEvents
Class Method Details
.included(base) ⇒ Object
7 8 9 |
# File 'lib/midi-events/system_exclusive.rb', line 7 def self.included(base) base.send(:include, InstanceMethods) end |