summaryrefslogtreecommitdiffhomepage
path: root/UI.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2025-01-03 12:27:14 +0100
committerRoland Reichwein <mail@reichwein.it>2025-01-03 12:27:14 +0100
commit05895c86bddf50aacb3bb5e6a6bcc073965341ef (patch)
treed7627562c8ca35c8689d0a6612a2cdab2cdc4ae4 /UI.cpp
parent4af400141af0c97c4e4bcd47acf78107a17eafbe (diff)
Add first UI
Diffstat (limited to 'UI.cpp')
-rw-r--r--UI.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/UI.cpp b/UI.cpp
new file mode 100644
index 0000000..f0eb0c3
--- /dev/null
+++ b/UI.cpp
@@ -0,0 +1,18 @@
+#include "UI.h"
+
+#include <iostream>
+
+void UI::draw()
+{
+ std::cout << std::endl;
+ std::cout << "- -- BPM +" << std::endl;
+ std::cout << "Mode: Click __/__ (Clock Internal)" << std::endl;
+ std::cout << "Status:" << std::endl;
+ std::cout << " Alive/not alive" << std::endl;
+ std::cout << " CPU: --% --% ..." << std::endl;
+ std::cout << " Notes/Channels: -- -- -- ... (Choose)" << std::endl;
+ std::cout << " Timestamp: ------" << std::endl;
+ std::cout << " Active sensing: ---" << std::endl;
+ std::cout << " Clock: ____" << std::endl;
+ std::cout << " Click: ____" << std::endl;
+}