From 2b285e53ed741770171f7698d688d9b294f1d9c8 Mon Sep 17 00:00:00 2001 From: fdai7184 Date: Fri, 10 Feb 2023 00:35:51 +0100 Subject: [PATCH] add input.h --- src/input.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/input.h diff --git a/src/input.h b/src/input.h new file mode 100644 index 0000000..c6e2855 --- /dev/null +++ b/src/input.h @@ -0,0 +1,7 @@ +#include "unity.h" +#ifndef INPUT_H +#define INPUT_H + +void getInput(); + +#endif