sources and files for the bombatuino project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
123 B

  1. #include <bombatuino_MIDI.h>
  2. MIDI Midi;
  3. void setup() {
  4. Midi.begin();
  5. }
  6. void loop() {
  7. Midi.noteOn(0x3C,0x64);
  8. }