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

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