Skip to content

Instantly share code, notes, and snippets.

@aberant
Created November 25, 2008 04:28
Show Gist options
  • Save aberant/28783 to your computer and use it in GitHub Desktop.
Save aberant/28783 to your computer and use it in GitHub Desktop.
/*
sends serial data over usb to be converted by ruby to MIDI..
*/
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print(84, DEC);
delay(200);
Serial.print(94, DEC);
delay(200);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment