summaryrefslogtreecommitdiff
path: root/project/Core/Inc
diff options
context:
space:
mode:
Diffstat (limited to 'project/Core/Inc')
-rw-r--r--project/Core/Inc/Project/player_actions.h22
-rw-r--r--project/Core/Inc/Project/project.h1
2 files changed, 23 insertions, 0 deletions
diff --git a/project/Core/Inc/Project/player_actions.h b/project/Core/Inc/Project/player_actions.h
new file mode 100644
index 0000000..c6db2c5
--- /dev/null
+++ b/project/Core/Inc/Project/player_actions.h
@@ -0,0 +1,22 @@
+/*
+ * player_actions.h
+ *
+ * Created on: Oct 17, 2025
+ * Author: sowgro
+ */
+
+#ifndef INC_PROJECT_PLAYER_ACTIONS_H_
+#define INC_PROJECT_PLAYER_ACTIONS_H_
+
+#define PLAYING_STATE (1)
+#define PAUSED_STATE (2)
+#define STOPPED_STATE (3)
+
+void help();
+void next();
+void play();
+void pause();
+void pause_loop();
+void stop();
+
+#endif /* INC_PROJECT_PLAYER_ACTIONS_H_ */
diff --git a/project/Core/Inc/Project/project.h b/project/Core/Inc/Project/project.h
index a4b568b..da3590c 100644
--- a/project/Core/Inc/Project/project.h
+++ b/project/Core/Inc/Project/project.h
@@ -9,5 +9,6 @@
#define INC_PROJECT_H_
void project_run();
+void handle_input(char buffer[], uint8_t *state);
#endif /* INC_PROJECT_H_ */