Display degree symbol in TPMS, Sonde, and Temperature apps; disabled Font Viewer (#1388)

* Display degrees symbol; disable Font Viewer app to save ROM space
This commit is contained in:
Mark Thompson 2023-08-20 04:14:22 -05:00 committed by GitHub
parent a4325ac20d
commit c6424f1623
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 7 deletions

View file

@ -24,6 +24,9 @@
#include <cstdint>
#define STR_DEGREES_C "\xB0\x43" // ºC - 0xB0 is degree ° symbol in our 8x16 font, 0x43 is "C"
#define STR_DEGREES_F "\xB0\x46" // ºF - 0xB0 is degree ° symbol in our 8x16 font, 0x46 is "F"
namespace units {
class Pressure {