mirror of
https://github.com/bbswitzer/PianoProject
synced 2026-07-14 02:01:33 -04: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 |