| 243 | */ |
| 244 | template<class Transport, class Settings, class Platform> |
| 245 | void MidiInterface<Transport, Settings, Platform>::sendNoteOff(DataByte inNoteNumber, |
| 246 | DataByte inVelocity, |
| 247 | Channel inChannel) |
| 248 | { |
| 249 | send(NoteOff, inNoteNumber, inVelocity, inChannel); |
| 250 | } |
| 251 | |
| 252 | /*! \brief Send a Program Change message |
| 253 | \param inProgramNumber The Program to select (0 to 127). |