mirror of
https://github.com/bbswitzer/PianoProject
synced 2026-01-16 19:05:11 -05:00
10 lines
209 B
C
10 lines
209 B
C
#ifndef SERIAL_H
|
|
#define SERIAL_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
void checkForSerial();
|
|
void sendSerialToMain(byte header, byte setting, byte value);
|
|
void sendSerialToUSB(String* message, int lengthOfMessage);
|
|
|
|
#endif |