mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
7feef9d38b
* WIP * Fixed merge * Added test code * WIP * Clean up * add reset learned params * ui fix * ui fix2 * Updated func * Fixed english * WIP * WIP testing * Added new debug app * Got new app for debug * Got new app for debug * Got one full page showing * Got app working with all reg * Got app working with all reg * Got full hex showing * Fixed dp * Fixed dp * Moved entities * Enabled apps again * SHow battery debug if ic * WIP * Refactored further * WIP * Refactor and clean up * Refactor and clean up * fix warning, add tte/ttf, add cycles counter. * wip * morse tx to ext app * fix morse crash * fix ui * Updated wording * WIP * WIP * Updated to display hours and minutes --------- Co-authored-by: HTotoo <ttotoo@gmail.com>
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
#ifndef __UI_DEBUG_BATTERY_HPP__
|
|
#define __UI_DEBUG_BATTERY_HPP__
|
|
|
|
#include "ui.hpp"
|
|
#include "ui_widget.hpp"
|
|
#include "ui_navigation.hpp"
|
|
#include "battery.hpp"
|
|
#include "max17055.hpp"
|
|
|
|
namespace ui {
|
|
|
|
class BatteryCapacityView : public View {
|
|
public:
|
|
BatteryCapacityView(NavigationView& nav);
|
|
void focus() override;
|
|
std::string title() const override { return "Battery Registers"; }
|
|
|
|
bool on_encoder(const EncoderEvent delta) override;
|
|
|
|
using RegisterEntry = battery::max17055::RegisterEntry;
|
|
|
|
private:
|
|
static RegisterEntry get_entry(size_t index);
|
|
|
|
Labels labels{
|
|
{{0 * 8, 0 * 16}, "Reg", Theme::getInstance()->fg_yellow->foreground},
|
|
{{9 * 8, 0 * 16}, "Addr", Theme::getInstance()->fg_yellow->foreground},
|
|
{{14 * 8, 0 * 16}, "Hex", Theme::getInstance()->fg_yellow->foreground},
|
|
{{21 * 8, 0 * 16}, "Value", Theme::getInstance()->fg_yellow->foreground},
|
|
};
|
|
std::array<Text, 16> name_texts = {};
|
|
std::array<Text, 16> addr_texts = {};
|
|
std::array<Text, 16> hex_texts = {};
|
|
std::array<Text, 16> value_texts = {};
|
|
|
|
Text page_text{{144, 284, 80, 16}, "Page 1/1"};
|
|
Button button_done{{16, 280, 96, 24}, "Done"};
|
|
|
|
void update_values();
|
|
void populate_page(int start_index);
|
|
void update_page_text();
|
|
int current_page = 0;
|
|
static constexpr int ENTRIES_PER_PAGE = 16;
|
|
};
|
|
|
|
} // namespace ui
|
|
|
|
#endif // __UI_DEBUG_BATTERY_HPP__
|