Files
2019-07-25 16:06:12 -04:00

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