midiout.cpp 276 B

123456789101112131415161718
  1. #include <iostream>
  2. #include "Output.h"
  3. using namespace std;
  4. using namespace midi;
  5. int main()
  6. {
  7. Output out;
  8. out.openVirtualPort();
  9. cout << "press button to start... " << flush;
  10. cin.ignore();
  11. out.sendMessage(NoteOnMessage(3, 45, 127));
  12. return 0;
  13. }