summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@bpcspace.com>2023-10-27 07:10:26 -0500
committerBrett Weiland <brett_weiland@bpcspace.com>2023-10-27 07:10:26 -0500
commite811d778ea51ac1e25588a9cc957fca4f532ea5a (patch)
treed28999567bad4613143d016bfb6d376c22f9e3a2 /menu.h
init
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/menu.h b/menu.h
new file mode 100644
index 0000000..5dd4022
--- /dev/null
+++ b/menu.h
@@ -0,0 +1,19 @@
+#ifndef MENU_H
+#define MENU_H
+
+enum MODES {
+ RAINBOW,
+ WHITE,
+ RGBW_MANUAL,
+ MOTOR_SPEED,
+ OFF
+};
+
+enum RGBW_MANUAL_OPTS {
+ RGBW_CONF_R,
+ RGBW_CONF_G,
+ RGBW_CONF_B,
+ RGBW_CONF_W
+};
+
+#endif