#ifndef MIDI_H
#define MIDI_H

#include <MIDIUSB.h>

void note_on_tx(byte channel, byte pitch, byte velocity);
void note_off_tx(byte channel, byte pitch, byte velocity);
void note_on_rx(byte channel, byte pitch, byte velocity);
void note_off_rx(byte channel, byte pitch, byte velocity);
void midi_header(midiEventPacket_t rx);

#endif /* MIDI_H */