diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-03-31 10:38:44 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-03-31 10:39:16 (GMT) |
| commit | f0327f77c6c4f307df60866213999a031864cbea (patch) | |
| tree | f7c9af5a32f363da6c8cfd133c06f833e22a2294 /src/displayapp/screens/Symbols.h | |
| parent | 71f3c208e0a4547478d4380a4fba6445050da187 (diff) | |
remove lv_font_sys
Diffstat (limited to 'src/displayapp/screens/Symbols.h')
| -rw-r--r-- | src/displayapp/screens/Symbols.h | 42 |
1 files changed, 35 insertions, 7 deletions
diff --git a/src/displayapp/screens/Symbols.h b/src/displayapp/screens/Symbols.h index 13b7c89..8974ae1 100644 --- a/src/displayapp/screens/Symbols.h +++ b/src/displayapp/screens/Symbols.h @@ -130,13 +130,41 @@ namespace Pinetime { // lv_font_sys_48.c static constexpr const char* settings = "\xEE\xA4\x82"; // e902 - static constexpr const char* brightnessHigh = "\xEE\xA4\x84"; // e904 - static constexpr const char* brightnessLow = "\xEE\xA4\x85"; // e905 - static constexpr const char* brightnessMedium = "\xEE\xA4\x86"; // e906 - - static constexpr const char* notificationsOff = "\xEE\xA4\x8B"; // e90b - static constexpr const char* notificationsOn = "\xEE\xA4\x8C"; // e90c - + static constexpr const char brightnessHigh[] = + // "\xEE\xA4\x84"; // e904 + G(X, X, X, + _, X, _, + X, X, X, + _, X, _, + X, X, X); + static constexpr const char brightnessLow[] = + // "\xEE\xA4\x85"; // e905 + G(_, _, _, + _, X, _, + X, X, X, + _, X, _, + _, _, _); + static constexpr const char brightnessMedium[] = + // "\xEE\xA4\x86"; // e906 + G(_, X, _, + X, X, X, + _, X, _, + X, X, X, + _, X, _); + static constexpr const char notificationsOff[] = + // "\xEE\xA4\x8B"; // e90b + G(_, _, _, + _, X, _, + _, X, _, + X, X, X, + X, X, X); + static constexpr const char notificationsOn[] = + // "\xEE\xA4\x8C"; // e90c + G(_, X, _, + _, X, _, + X, X, X, + X, X, X, + _, X, _); static constexpr const char* highlight = "\xEE\xA4\x87"; // e907 } |
