mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-08 20:44:58 +00:00
12 lines
282 B
C++
12 lines
282 B
C++
#pragma once
|
|
#include "NodeDB.h"
|
|
|
|
class DisplayFormatters
|
|
{
|
|
public:
|
|
static const char *getModemPresetDisplayName(meshtastic_Config_LoRaConfig_ModemPreset preset, bool useShortName);
|
|
|
|
public:
|
|
static const char *getDeviceRole(meshtastic_Config_DeviceConfig_Role role);
|
|
};
|