17 lines
171 B
C++
17 lines
171 B
C++
#ifndef _TEENSY_MIDI_H_
|
|
#define _TEENSY_MIDI_H_
|
|
|
|
class Teensy_Midi
|
|
{
|
|
public:
|
|
Teensy_Midi();
|
|
|
|
void init();
|
|
|
|
void start();
|
|
void stop();
|
|
|
|
void clock();
|
|
};
|
|
|
|
#endif
|