summaryrefslogtreecommitdiff
path: root/hid/arduino/lib/drivers/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'hid/arduino/lib/drivers/board.h')
-rw-r--r--hid/arduino/lib/drivers/board.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/hid/arduino/lib/drivers/board.h b/hid/arduino/lib/drivers/board.h
new file mode 100644
index 00000000..cc431d62
--- /dev/null
+++ b/hid/arduino/lib/drivers/board.h
@@ -0,0 +1,41 @@
+/*****************************************************************************
+# #
+# KVMD - The main PiKVM daemon. #
+# #
+# Copyright (C) 2018-2023 Maxim Devaev <[email protected]> #
+# #
+# This program is free software: you can redistribute it and/or modify #
+# it under the terms of the GNU General Public License as published by #
+# the Free Software Foundation, either version 3 of the License, or #
+# (at your option) any later version. #
+# #
+# This program is distributed in the hope that it will be useful, #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
+# GNU General Public License for more details. #
+# #
+# You should have received a copy of the GNU General Public License #
+# along with this program. If not, see <https://www.gnu.org/licenses/>. #
+# #
+*****************************************************************************/
+
+
+#pragma once
+
+#include "driver.h"
+
+
+namespace DRIVERS {
+ enum status {
+ RX_DATA = 0,
+ KEYBOARD_ONLINE,
+ MOUSE_ONLINE,
+ };
+
+ struct Board : public Driver {
+ using Driver::Driver;
+ virtual void reset() {}
+ virtual void periodic() {}
+ virtual void updateStatus(status status) {}
+ };
+}