Files
PianoProject/ESP32/serial.h
Brandon Switzer e01441da84 code now compiles
2019-07-25 16:06:12 -04:00

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