mirror of
https://github.com/bbswitzer/PianoProject
synced 2026-08-05 04:15:50 -04: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 |