mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-24 10:19:19 +00:00

* Account for low resolution wide screen OLEDs * Allow picking of Device Role and new Display Formatter for Device Role * Add remainder of client roles to display formatter * Don't update the role unless you pick a value * Mascots are fun * Fix warnings during compile time * Improve some menus * Mascots need to work everywhere * Update Chirpy image * Fix Trunk * Update protobufs * Add date to Clock screen * Analog clocks love dates too * Finalize date moves for analog clock
13 lines
347 B
C++
13 lines
347 B
C++
#pragma once
|
|
#include "NodeDB.h"
|
|
|
|
class DisplayFormatters
|
|
{
|
|
public:
|
|
static const char *getModemPresetDisplayName(meshtastic_Config_LoRaConfig_ModemPreset preset, bool useShortName,
|
|
bool usePreset);
|
|
|
|
public:
|
|
static const char *getDeviceRole(meshtastic_Config_DeviceConfig_Role role);
|
|
};
|