mirror of
https://github.com/bbswitzer/PianoProject
synced 2026-01-16 19:05:11 -05:00
13 lines
175 B
C
13 lines
175 B
C
#ifndef INPUT_H
|
|
#define INPUT_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
extern unsigned long lastPressedOverall;
|
|
|
|
extern int lastAnalog;
|
|
|
|
void initializeInputs();
|
|
void checkForInput();
|
|
|
|
#endif |