| 224 | */ |
| 225 | template<class Transport, class Settings, class Platform> |
| 226 | void MidiInterface<Transport, Settings, Platform>::sendNoteOn(DataByte inNoteNumber, |
| 227 | DataByte inVelocity, |
| 228 | Channel inChannel) |
| 229 | { |
| 230 | send(NoteOn, inNoteNumber, inVelocity, inChannel); |
| 231 | } |
| 232 | |
| 233 | /*! \brief Send a Note Off message |
| 234 | \param inNoteNumber Pitch value in the MIDI format (0 to 127). |