Merge pull request #215 from euquiq/looking_glass_full_bw_cascade_scanner

New "looking Glass" app
This commit is contained in:
Erwin Ried 2020-10-27 21:57:11 +01:00 committed by GitHub
commit 01cfd360fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 531 additions and 1 deletions

View file

@ -81,7 +81,7 @@
#include "tpms_app.hpp"
#include "core_control.hpp"
#include "ui_looking_glass_app.hpp"
#include "file.hpp"
#include "png_writer.hpp"
@ -548,6 +548,7 @@ SystemMenuView::SystemMenuView(NavigationView& nav) {
{ "Tools", ui::Color::cyan(), &bitmap_icon_utilities, [&nav](){ nav.push<UtilitiesMenuView>(); } },
{ "Options", ui::Color::cyan(), &bitmap_icon_setup, [&nav](){ nav.push<SettingsMenuView>(); } },
{ "Debug", ui::Color::light_grey(), &bitmap_icon_debug, [&nav](){ nav.push<DebugMenuView>(); } },
{ "Lookin'Glass", ui::Color::red(), &bitmap_icon_search, [&nav](){ nav.push<GlassView>(); } },
{ "HackRF", ui::Color::cyan(), &bitmap_icon_hackrf, [this, &nav](){ hackrf_mode(nav); } },
//{ "About", ui::Color::cyan(), nullptr, [&nav](){ nav.push<AboutView>(); } }
});