diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-03-31 07:05:36 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-03-31 07:05:36 (GMT) |
| commit | 1a166673fbbf12cfc3f047afe0305131b9b96e39 (patch) | |
| tree | dcbac8e2b7f4c12ef5b35ece40e421e2cf42ae80 /src/displayapp/screens/Symbols.h | |
| parent | 8a0f738a027b758f253330d7171fd28ffe4f6162 (diff) | |
| parent | d081bc82fa01b5ecb373671d38fa88397c49a235 (diff) | |
Merge ../InfiniSim/InfiniTime into semireduxsemiredux
Diffstat (limited to 'src/displayapp/screens/Symbols.h')
| -rw-r--r-- | src/displayapp/screens/Symbols.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/displayapp/screens/Symbols.h b/src/displayapp/screens/Symbols.h index 928bcd7..63f3778 100644 --- a/src/displayapp/screens/Symbols.h +++ b/src/displayapp/screens/Symbols.h @@ -10,7 +10,16 @@ namespace Pinetime { static constexpr const char* batteryThreeQuarter = "\xEF\x89\x81"; static constexpr const char* batteryHalf = "\xEF\x89\x82"; static constexpr const char* batteryOneQuarter = "\xEF\x89\x83"; - static constexpr const char* heartBeat = "\xEF\x88\x9E"; + static constexpr const char* heartBeat = + // Standard: "\xEF\x88\x9E" + // For neofont: + // Layout for 3-byte codes: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx + // U+F0000: 11110011 10110000 000000 000000 + // Neofont glyph: 11110011 10110zzz zzzzyy yyyyyy + // CDD DEEEAA ABBBCC + // \xF3 \xB[0-7] \x[8-B]. \x[8-B]. + "\xF3\xB5\x80\x97" + ; static constexpr const char* bluetoothFull = "\xEF\x8A\x93"; static constexpr const char* bluetooth = "\xEF\x8A\x94"; static constexpr const char* plug = "\xEF\x87\xA6"; |
