mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-11 16:07:13 +00:00
Burning Man icon for BRC page
This commit is contained in:
parent
9e6f4bcf97
commit
9104070e94
@ -905,7 +905,7 @@ void Screen::setFrames(FrameFocus focus)
|
|||||||
|
|
||||||
// Show detailed node views only on E-Ink builds
|
// Show detailed node views only on E-Ink builds
|
||||||
#ifdef USE_EINK
|
#ifdef USE_EINK
|
||||||
fsi.positions.nodelist_lastheard = numframes;
|
fsi.positions.nodelist_brc = numframes;
|
||||||
normalFrames[numframes++] = graphics::NodeListRenderer::drawLastHeardScreen;
|
normalFrames[numframes++] = graphics::NodeListRenderer::drawLastHeardScreen;
|
||||||
indicatorIcons.push_back(icon_nodes);
|
indicatorIcons.push_back(icon_nodes);
|
||||||
|
|
||||||
@ -916,11 +916,15 @@ void Screen::setFrames(FrameFocus focus)
|
|||||||
fsi.positions.nodelist_distance = numframes;
|
fsi.positions.nodelist_distance = numframes;
|
||||||
normalFrames[numframes++] = graphics::NodeListRenderer::drawDistanceScreen;
|
normalFrames[numframes++] = graphics::NodeListRenderer::drawDistanceScreen;
|
||||||
indicatorIcons.push_back(icon_distance);
|
indicatorIcons.push_back(icon_distance);
|
||||||
|
|
||||||
|
fsi.positions.nodelist_bearings = numframes;
|
||||||
|
normalFrames[numframes++] = graphics::NodeListRenderer::drawNodeListWithCompasses;
|
||||||
|
indicatorIcons.push_back(icon_list);
|
||||||
#endif
|
#endif
|
||||||
#if HAS_GPS
|
#if HAS_GPS
|
||||||
fsi.positions.nodelist_bearings = numframes;
|
fsi.positions.nodelist_bearings = numframes;
|
||||||
normalFrames[numframes++] = graphics::NodeListRenderer::drawBRCListWithCompasses;
|
normalFrames[numframes++] = graphics::NodeListRenderer::drawBRCList;
|
||||||
indicatorIcons.push_back(icon_list);
|
indicatorIcons.push_back(icon_bm);
|
||||||
|
|
||||||
fsi.positions.gps = numframes;
|
fsi.positions.gps = numframes;
|
||||||
normalFrames[numframes++] = graphics::UIRenderer::drawCompassAndLocationScreen;
|
normalFrames[numframes++] = graphics::UIRenderer::drawCompassAndLocationScreen;
|
||||||
@ -1386,7 +1390,8 @@ int Screen::handleInputEvent(const InputEvent *event)
|
|||||||
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_hopsignal ||
|
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_hopsignal ||
|
||||||
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_distance ||
|
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_distance ||
|
||||||
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_hopsignal ||
|
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_hopsignal ||
|
||||||
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_bearings) {
|
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_bearings ||
|
||||||
|
this->ui->getUiState()->currentFrame == framesetInfo.positions.nodelist_brc) {
|
||||||
menuHandler::nodeListMenu();
|
menuHandler::nodeListMenu();
|
||||||
} else if (this->ui->getUiState()->currentFrame == framesetInfo.positions.wifi) {
|
} else if (this->ui->getUiState()->currentFrame == framesetInfo.positions.wifi) {
|
||||||
menuHandler::wifiBaseMenu();
|
menuHandler::wifiBaseMenu();
|
||||||
|
@ -662,6 +662,7 @@ class Screen : public concurrency::OSThread
|
|||||||
uint8_t nodelist_hopsignal = 255;
|
uint8_t nodelist_hopsignal = 255;
|
||||||
uint8_t nodelist_distance = 255;
|
uint8_t nodelist_distance = 255;
|
||||||
uint8_t nodelist_bearings = 255;
|
uint8_t nodelist_bearings = 255;
|
||||||
|
uint8_t nodelist_brc = 255;
|
||||||
uint8_t clock = 255;
|
uint8_t clock = 255;
|
||||||
uint8_t firstFavorite = 255;
|
uint8_t firstFavorite = 255;
|
||||||
uint8_t lastFavorite = 255;
|
uint8_t lastFavorite = 255;
|
||||||
|
@ -567,7 +567,7 @@ void drawNodeListWithCompasses(OLEDDisplay *display, OLEDDisplayUiState *state,
|
|||||||
drawNodeListScreen(display, state, x, y, "Bearings", drawEntryCompass, drawCompassArrow, heading, lat, lon);
|
drawNodeListScreen(display, state, x, y, "Bearings", drawEntryCompass, drawCompassArrow, heading, lat, lon);
|
||||||
}
|
}
|
||||||
|
|
||||||
void drawBRCListWithCompasses(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y)
|
void drawBRCList(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y)
|
||||||
{
|
{
|
||||||
float heading = 0;
|
float heading = 0;
|
||||||
bool validHeading = false;
|
bool validHeading = false;
|
||||||
|
@ -48,7 +48,7 @@ void drawHopSignalScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_
|
|||||||
void drawDistanceScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
void drawDistanceScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
||||||
void drawDynamicNodeListScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
void drawDynamicNodeListScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
||||||
void drawNodeListWithCompasses(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
void drawNodeListWithCompasses(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
||||||
void drawBRCListWithCompasses(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
void drawBRCList(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
||||||
|
|
||||||
// Utility functions
|
// Utility functions
|
||||||
const char *getCurrentModeTitle(int screenWidth);
|
const char *getCurrentModeTitle(int screenWidth);
|
||||||
|
@ -156,6 +156,18 @@ const uint8_t icon_list[] PROGMEM = {
|
|||||||
0x82 // Row 7: #.....#.
|
0x82 // Row 7: #.....#.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// ➤ The Man Icon (8x8)
|
||||||
|
const uint8_t icon_bm[] PROGMEM = {
|
||||||
|
0x42, // Row 0: .#....#.
|
||||||
|
0x3C, // Row 1: ..####..
|
||||||
|
0x3C, // Row 2: ..####..
|
||||||
|
0x18, // Row 3: ...##...
|
||||||
|
0x18, // Row 4: ...##...
|
||||||
|
0x24, // Row 5: ..#..#..
|
||||||
|
0x24, // Row 6: ..#..#..
|
||||||
|
0x42 // Row 7: .#....#.
|
||||||
|
};
|
||||||
|
|
||||||
// 📶 Signal Bars Icon (left to right, small to large with spacing)
|
// 📶 Signal Bars Icon (left to right, small to large with spacing)
|
||||||
const uint8_t icon_signal[] PROGMEM = {
|
const uint8_t icon_signal[] PROGMEM = {
|
||||||
0b00000000, // ░░░░░░░
|
0b00000000, // ░░░░░░░
|
||||||
|
Loading…
Reference in New Issue
Block a user