mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 13:41:28 +00:00
![Ben Meadors](/assets/img/avatar_default.png)
* Refactor away some duplication * Refactor preset names to display formatter method * Remove unused screen brightness adjustment and extract wifi disconnect reason name to display formatter method * Tronk * Let's be more clear with this naming * Effed * DisplayFormatters static class and use native wifi disconnect reason names method * git mv file so casing should match now * Include titlecase * Trunk
9 lines
191 B
C++
9 lines
191 B
C++
#pragma once
|
|
#include "NodeDB.h"
|
|
|
|
class DisplayFormatters
|
|
{
|
|
public:
|
|
static const char *getModemPresetDisplayName(meshtastic_Config_LoRaConfig_ModemPreset preset, bool useShortName);
|
|
};
|