summaryrefslogtreecommitdiff
path: root/include/arch/esp8266/driver/stdin.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/arch/esp8266/driver/stdin.h')
-rw-r--r--include/arch/esp8266/driver/stdin.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/arch/esp8266/driver/stdin.h b/include/arch/esp8266/driver/stdin.h
deleted file mode 100644
index 1085111..0000000
--- a/include/arch/esp8266/driver/stdin.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright 2020 Daniel Friesel
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
-#ifndef STANDARDINPUT_H
-#define STANDARDINPUT_H
-
-class StandardInput {
- private:
- StandardInput(const StandardInput &copy);
- char buffer[8];
- unsigned char write_pos, read_pos;
-
- public:
- StandardInput() : write_pos(0), read_pos(0) {}
- void setup();
- bool hasKey();
- char getKey();
-
- inline void addKey(char key) {
- buffer[write_pos++] = key;
- write_pos %= 8;
- }
-};
-
-extern StandardInput kin;
-
-#endif