diff options
| -rw-r--r-- | src/displayapp/screens/ApplicationList.cpp | 2 | ||||
| -rw-r--r-- | src/displayapp/screens/Symbols.h | 105 |
2 files changed, 75 insertions, 32 deletions
diff --git a/src/displayapp/screens/ApplicationList.cpp b/src/displayapp/screens/ApplicationList.cpp index e2b5322..385b7ec 100644 --- a/src/displayapp/screens/ApplicationList.cpp +++ b/src/displayapp/screens/ApplicationList.cpp @@ -41,7 +41,7 @@ std::unique_ptr<Screen> ApplicationList::CreateScreen1() { {Symbols::stopWatch, Apps::StopWatch}, {Symbols::heartBeat, Apps::HeartRate}, {Symbols::hourGlass, Apps::Timer}, - {Symbols::clock, Apps::Alarm}, + {Symbols::alarmClock, Apps::Alarm}, }}; return std::make_unique<Screens::Tile>(0, 3, app, settingsController, batteryController, dateTimeController, applications); diff --git a/src/displayapp/screens/Symbols.h b/src/displayapp/screens/Symbols.h index 83ccee6..1b7a952 100644 --- a/src/displayapp/screens/Symbols.h +++ b/src/displayapp/screens/Symbols.h @@ -128,7 +128,20 @@ namespace Pinetime { _, X, _, _, _, X, X, X, _, _, X, X, X, X, _, _, X, X); - static constexpr const char* clock = "\xEF\x80\x97"; + static constexpr const char clock[] = + // "\xEF\x80\x97"; + H(_, X, X, X, _, _, + X, _, X, _, X, _, + X, _, X, _, X, _, + X, _, _, _, X, _, + _, X, X, X, _, _); + static constexpr const char alarmClock[] = + // "\xEF\x80\x97"; + H(_, X, _, X, _, _, + X, X, X, X, X, _, + _, X, X, X, _, _, + X, _, _, _, X, _, + X, _, X, _, X, _); static constexpr const char* info = "\xEF\x84\xA9"; static constexpr const char* list = "\xEF\x80\xBA"; static constexpr const char* sun = "\xEF\x86\x85"; @@ -175,11 +188,16 @@ namespace Pinetime { _, _, _); static constexpr const char stopWatch[] = // "\xEF\x8B\xB2"; - G(X, _, _, - X, X, _, - X, X, X, - X, X, _, - X, _, _); + H(_, _, X, X, _, _, + X, _, X, X, _, X, + _, X, _, _, X, _, + _, X, _, _, X, _, + _, _, X, X, _, _); + // G(X, _, _, + // X, X, _, + // X, X, X, + // X, X, _, + // X, _, _); static constexpr const char hourGlass[] = // "\xEF\x89\x92"; H(_, X, X, X, X, _, @@ -225,40 +243,65 @@ namespace Pinetime { static constexpr const char brightnessHigh[] = // "\xEE\xA4\x84"; // e904 - G(X, X, X, - _, X, _, - X, X, X, - _, X, _, - X, X, X); + H(_, X, X, X, X, _, + X, X, X, X, X, X, + X, X, _, _, X, X, + X, X, X, X, X, X, + _, X, X, X, X, _); + // 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, _, - _, _, _); + H(_, X, X, X, X, _, + X, _, _, _, _, X, + X, _, X, X, _, X, + X, _, _, _, _, X, + _, X, X, X, X, _); + // 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, _); + H(_, X, X, X, X, _, + X, X, X, _, _, X, + X, X, _, X, _, X, + X, X, X, _, _, X, + _, X, X, X, X, _); + // 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); + H(_, _, X, _, _, _, + _, X, X, _, _, _, + X, _, X, _, _, _, + _, X, X, X, _, _, + X, X, X, X, X, _); + // G(_, 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, X, X); + H(_, _, _, _, _, X, + _, _, _, _, X, X, + X, X, X, X, X, X, + _, X, _, X, X, X, + _, _, X, _, _, X); + // G(_, X, _, + // _, X, _, + // X, X, X, + // X, X, X, + // X, X, X); static constexpr const char highlight[] = // "\xEE\xA4\x87"; // e907 |
