More small tweaks to the icons

This commit is contained in:
Erwin Ried 2020-05-11 16:33:53 +02:00
parent b48b0efe5c
commit 15a6bc17b5
8 changed files with 55 additions and 33 deletions

View File

@ -125,17 +125,17 @@ static constexpr uint8_t bitmap_icon_adsb_data[] = {
0xC0, 0x03,
0xC0, 0x03,
0xC0, 0x03,
0xE8, 0x17,
0xFA, 0x5F,
0xE0, 0x07,
0xF8, 0x1F,
0xFE, 0x7F,
0xFF, 0xFF,
0xC7, 0xE3,
0xFF, 0xFF,
0xC0, 0x03,
0xC0, 0x03,
0xC0, 0x03,
0xE0, 0x07,
0xF0, 0x0F,
0xF8, 0x1F,
0x38, 0x1C,
};
static constexpr Bitmap bitmap_icon_adsb {
{ 16, 16 }, bitmap_icon_adsb_data
@ -144,19 +144,19 @@ static constexpr Bitmap bitmap_icon_adsb {
static constexpr uint8_t bitmap_icon_ais_data[] = {
0x00, 0x01,
0x80, 0x01,
0xC0, 0x01,
0xC0, 0x0D,
0xC0, 0x3D,
0xE0, 0x3D,
0xF0, 0x7D,
0xF8, 0x7D,
0xF0, 0x3D,
0xF8, 0x7D,
0xFC, 0x7D,
0xFC, 0x7D,
0xFE, 0x7D,
0xFF, 0x7D,
0x00, 0x00,
0xF8, 0x7F,
0xF8, 0x3F,
0xF8, 0x1F,
0xFB, 0xCF,
0x00, 0x00,
0xF0, 0x0F,
0x00, 0x00,
};
static constexpr Bitmap bitmap_icon_ais {
@ -274,21 +274,21 @@ static constexpr Bitmap bitmap_icon_btle {
};
static constexpr uint8_t bitmap_icon_burger_data[] = {
0x00, 0x00,
0xE0, 0x07,
0x58, 0x18,
0x04, 0x25,
0x12, 0x40,
0x85, 0x90,
0x21, 0x84,
0x01, 0x80,
0x06, 0x60,
0xFE, 0x7F,
0x0E, 0x78,
0x1F, 0xFC,
0x39, 0x9F,
0xC3, 0xC0,
0x0E, 0x70,
0xF8, 0x1F,
0xFC, 0x3F,
0xFE, 0x7F,
0xFF, 0xFF,
0xFF, 0xFF,
0x00, 0x00,
0x55, 0x55,
0xAA, 0xAA,
0x55, 0x55,
0x00, 0x00,
0xFF, 0xFF,
0xFF, 0xFF,
0xFE, 0x7F,
0x00, 0x00,
};
static constexpr Bitmap bitmap_icon_burger {
@ -661,7 +661,7 @@ static constexpr uint8_t bitmap_icon_gps_sim_data[] = {
0x38, 0x1F,
0xF0, 0x0F,
0xE0, 0x07,
0xC0, 0x03,
0xE0, 0x07,
0xC0, 0x03,
0x80, 0x01,
};
@ -823,6 +823,28 @@ static constexpr Bitmap bitmap_icon_microphone {
{ 16, 16 }, bitmap_icon_microphone_data
};
static constexpr uint8_t bitmap_icon_modem_data[] = {
0x00, 0x00,
0x00, 0x00,
0x00, 0x00,
0x00, 0x00,
0xF8, 0x1F,
0x04, 0x20,
0x02, 0x40,
0xFF, 0xFF,
0xFF, 0xFF,
0xAB, 0xDF,
0xAB, 0xDF,
0xFF, 0xFF,
0xFF, 0xFF,
0x00, 0x00,
0x00, 0x00,
0x00, 0x00,
};
static constexpr Bitmap bitmap_icon_modem {
{ 16, 16 }, bitmap_icon_modem_data
};
static constexpr uint8_t bitmap_icon_morse_data[] = {
0x00, 0x00,
0x18, 0x00,
@ -1004,17 +1026,17 @@ static constexpr uint8_t bitmap_icon_remote_data[] = {
0x20, 0x00,
0x20, 0x00,
0x20, 0x00,
0xF0, 0x03,
0x10, 0x04,
0xD0, 0x08,
0xD0, 0x08,
0xE0, 0x07,
0x10, 0x08,
0xD0, 0x08,
0xD0, 0x08,
0xD0, 0x0B,
0xD0, 0x0B,
0x10, 0x08,
0x10, 0x08,
0x30, 0x0C,
0xF0, 0x0F,
0x90, 0x0A,
0x50, 0x09,
0x90, 0x0A,
0x50, 0x09,
0x10, 0x08,
0xE0, 0x07,
};
static constexpr Bitmap bitmap_icon_remote {

View File

@ -350,7 +350,7 @@ ReceiversMenuView::ReceiversMenuView(NavigationView& nav) {
{ "ADS-B", ui::Color::green(), &bitmap_icon_adsb, [&nav](){ nav.push<ADSBRxView>(); }, },
{ "ACARS", ui::Color::yellow(), &bitmap_icon_adsb, [&nav](){ nav.push<ACARSAppView>(); }, },
{ "AIS Boats", ui::Color::green(), &bitmap_icon_ais, [&nav](){ nav.push<AISAppView>(); } },
{ "AFSK", ui::Color::yellow(), &bitmap_icon_receivers, [&nav](){ nav.push<AFSKRxView>(); } },
{ "AFSK", ui::Color::yellow(), &bitmap_icon_modem, [&nav](){ nav.push<AFSKRxView>(); } },
{ "BTLE", ui::Color::yellow(), &bitmap_icon_btle, [&nav](){ nav.push<BTLERxView>(); } },
{ "NRF", ui::Color::yellow(), &bitmap_icon_nrf, [&nav](){ nav.push<NRFRxView>(); } },
{ "Audio", ui::Color::green(), &bitmap_icon_speaker, [&nav](){ nav.push<AnalogAudioView>(); } },

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 B

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 B

After

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 B

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 B

After

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 B

After

Width:  |  Height:  |  Size: 147 B