summaryrefslogtreecommitdiffhomepage
path: root/UI.cpp
blob: f0eb0c39a4f30222d9c8b8e6cd3117d824a23653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}