Skip to content
Snippets Groups Projects
Unverified Commit d7f3539c authored by Gregory Fenton's avatar Gregory Fenton Committed by GitHub
Browse files

Testing new debug icons

parent 85391273
No related branches found
No related tags found
No related merge requests found
......@@ -346,12 +346,12 @@ DebugPeripheralsMenuView::DebugPeripheralsMenuView(NavigationView& nav) {
DebugMenuView::DebugMenuView(NavigationView& nav) {
add_items({
//{ "..", ui::Color::light_grey(),&bitmap_icon_previous, [&nav](){ nav.pop(); } },
{ "Memory", ui::Color::green(), &bitmap_icon_soundboard, [&nav](){ nav.push<DebugMemoryView>(); } },
{ "Memory", ui::Color::green(), &bitmap_icon_memory, [&nav](){ nav.push<DebugMemoryView>(); } },
//{ "Radio State", ui::Color::white(), nullptr, [&nav](){ nav.push<NotImplementedView>(); } },
{ "SD Card", ui::Color::black(), &bitmap_icon_file, [&nav](){ nav.push<SDCardDebugView>(); } },
{ "Peripherals", ui::Color::green(), &bitmap_icon_debug, [&nav](){ nav.push<DebugPeripheralsMenuView>(); } },
{ "Temperature", ui::Color::green(), &bitmap_icon_transmit, [&nav](){ nav.push<TemperatureView>(); } },
{ "Controls", ui::Color::black(), &bitmap_icon_utilities, [&nav](){ nav.push<DebugControlsView>(); } },
{ "SD Card", ui::Color::black(), &bitmap_icon_sd_card, [&nav](){ nav.push<SDCardDebugView>(); } },
{ "Peripherals", ui::Color::green(), &bitmap_icon_peripherals, [&nav](){ nav.push<DebugPeripheralsMenuView>(); } },
{ "Temperature", ui::Color::green(), &bitmap_icon_temperature, [&nav](){ nav.push<TemperatureView>(); } },
{ "Controls", ui::Color::black(), &bitmap_icon_controls, [&nav](){ nav.push<DebugControlsView>(); } },
});
set_max_rows(2); // allow wider buttons
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment