summaryrefslogtreecommitdiff
path: root/arcin/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'arcin/config.h')
-rw-r--r--arcin/config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/arcin/config.h b/arcin/config.h
new file mode 100644
index 0000000..a851e9c
--- /dev/null
+++ b/arcin/config.h
@@ -0,0 +1,15 @@
+#ifndef CONFIG_H
+#define CONFIG_H
+
+#include <stdint.h>
+
+struct config_t {
+ uint8_t label[12];
+ uint32_t flags;
+ int8_t qe1_sens;
+ int8_t qe2_sens;
+ uint8_t ps2_mode;
+ uint8_t ws2812b_mode;
+};
+
+#endif