mirror of
https://github.com/bbswitzer/PianoProject
synced 2026-09-13 01:45:10 -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 |