Documentation ¶
Overview ¶
Package syscommon provides MIDI System Common Messages
Index ¶
Constants ¶
View Source
const ( // Tune represents a MIDI tune request message Tune = tune(false) )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MTC ¶ added in v1.7.0
type MTC uint8
MTC represents a MIDI timing code message (quarter frame)
func (MTC) QuarterFrame ¶ added in v1.7.0
QuarterFrame returns the quarter frame
type Reader ¶
type Reader interface { // Read reads a single syscommon message. // It may just be called once per Reader. A second call returns io.EOF Read() (Message, error) }
Reader read a syscommon
type SPP ¶ added in v1.7.0
type SPP uint16
SPP represents the MIDI song position pointer (SPP)
type SongSelect ¶
type SongSelect uint8
SongSelect represents the MIDI song select system message
func (SongSelect) Raw ¶
func (m SongSelect) Raw() []byte
Raw returns the raw bytes for the message TODO Test
func (SongSelect) String ¶
func (m SongSelect) String() string
String represents the MIDI song select message as a string (for debugging)
Click to show internal directories.
Click to hide internal directories.