diff --git a/firmware/application/bitmap.hpp b/firmware/application/bitmap.hpp index 51a711ff..d700f3a9 100644 --- a/firmware/application/bitmap.hpp +++ b/firmware/application/bitmap.hpp @@ -1169,20 +1169,20 @@ static constexpr uint8_t bitmap_icon_tpms_data[] = { 0xEC, 0x37, 0x36, - 0x6C, - 0x1A, - 0x58, - 0x0B, - 0xD0, - 0x0B, - 0xD0, - 0x0B, - 0xD0, - 0x0B, - 0xD0, - 0x1A, - 0x58, - 0x36, + 0x6D, + 0x3A, + 0x59, + 0x4B, + 0xD5, + 0x8B, + 0xD3, + 0xCB, + 0xD1, + 0xAB, + 0xD2, + 0x9A, + 0x5C, + 0xB6, 0x6C, 0xEC, 0x37, @@ -5721,6 +5721,44 @@ static constexpr Bitmap bitmap_icon_hide{ {16, 16}, bitmap_icon_hide_data}; +static constexpr uint8_t bitmap_icon_thermometer_data[] = { + 0xC0, + 0x00, + 0x20, + 0x01, + 0x10, + 0x02, + 0x10, + 0x3A, + 0x10, + 0x02, + 0x10, + 0x1A, + 0x10, + 0x02, + 0xD0, + 0x3A, + 0xD0, + 0x02, + 0xD0, + 0x1A, + 0xD0, + 0x02, + 0xE8, + 0x05, + 0xE8, + 0x05, + 0xC8, + 0x04, + 0x10, + 0x02, + 0xE0, + 0x01, +}; +static constexpr Bitmap bitmap_icon_thermometer{ + {16, 16}, + bitmap_icon_thermometer_data}; + } /* namespace ui */ #endif /*__BITMAP_HPP__*/ diff --git a/firmware/application/ui_navigation.cpp b/firmware/application/ui_navigation.cpp index e05845a9..40d468cd 100644 --- a/firmware/application/ui_navigation.cpp +++ b/firmware/application/ui_navigation.cpp @@ -566,7 +566,7 @@ ReceiversMenuView::ReceiversMenuView(NavigationView& nav) { {"Recon", Color::green(), &bitmap_icon_scanner, [&nav]() { nav.push(); }}, {"Search", Color::yellow(), &bitmap_icon_search, [&nav]() { nav.push(); }}, {"TPMS Cars", Color::green(), &bitmap_icon_tpms, [&nav]() { nav.push(); }}, - {"Weather", Color::yellow(), &bitmap_icon_lge, [&nav]() { nav.push(); }}, + {"Weather", Color::green(), &bitmap_icon_thermometer, [&nav]() { nav.push(); }}, // {"FSK RX", Color::yellow(), &bitmap_icon_remote, [&nav]() { nav.push(); }}, // {"DMR", Color::dark_grey(), &bitmap_icon_dmr, [&nav](){ nav.push(); }}, // {"SIGFOX", Color::dark_grey(), &bitmap_icon_fox, [&nav](){ nav.push(); }}, diff --git a/firmware/graphics/icon_thermometer.png b/firmware/graphics/icon_thermometer.png new file mode 100644 index 00000000..9e0cb33f Binary files /dev/null and b/firmware/graphics/icon_thermometer.png differ diff --git a/firmware/graphics/icon_tpms.png b/firmware/graphics/icon_tpms.png index 93afb7a5..fa66aa4a 100644 Binary files a/firmware/graphics/icon_tpms.png and b/firmware/graphics/icon_tpms.png differ