mirror of
https://github.com/bbswitzer/PianoProject
synced 2026-01-16 19:05:11 -05:00
10 lines
206 B
C
10 lines
206 B
C
#ifndef SERIAL_H
|
|
#define SERIAL_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
void checkForSerial();
|
|
void sendMidiToProMicro(byte note, byte velocity);
|
|
void customSerialToProMicro(byte header, byte note, byte velocity);
|
|
|
|
#endif |