Skip to content

Instantly share code, notes, and snippets.

@gmcerveny
Last active December 20, 2015 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmcerveny/6202391 to your computer and use it in GitHub Desktop.
Save gmcerveny/6202391 to your computer and use it in GitHub Desktop.
Simple Hairless / Arduino MIDI test
#include <MIDI.h>
void setup()
{
MIDI.begin();
Serial.begin(115200);
}
void loop()
{
MIDI.sendNoteOn(0x3C, 0x7A, 0x01);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment