summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Symbols.h
blob: c6e76e360df20a845db5ddb206739766641b7015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once

namespace Pinetime {
  namespace Applications {
    namespace Screens {
      namespace Symbols {
        static constexpr const char* none = "";
        static constexpr const char* batteryHalf = "\xEF\x89\x82";
        static constexpr const char* heartBeat = "\xEF\x88\x9E";
        static constexpr const char* bluetooth = "\xEF\x8A\x94";
        static constexpr const char* plug = "\xEF\x87\xA6";
        static constexpr const char* shoe = "\xEF\x95\x8B";
        static constexpr const char* clock = "\xEF\x80\x97";
        static constexpr const char* info = "\xEF\x84\xA9";
        static constexpr const char* list = "\xEF\x80\xBA";
        static constexpr const char* sun = "\xEF\x86\x85";
        static constexpr const char* check = "\xEF\x95\xA0";
        static constexpr const char* music = "\xEF\x80\x81";
        static constexpr const char* tachometer = "\xEF\x8F\xBD";
        static constexpr const char* paintbrush = "\xEF\x87\xBC";
        static constexpr const char* paddle = "\xEF\x91\x9D";
        static constexpr const char* map = "\xEF\x96\xa0";
        static constexpr const char* phone = "\xEF\x82\x95";
        static constexpr const char* phoneSlash = "\xEF\x8F\x9D";
        static constexpr const char* volumMute = "\xEF\x9A\xA9";
        static constexpr const char* volumUp = "\xEF\x80\xA8";
        static constexpr const char* volumDown = "\xEF\x80\xA7";
        static constexpr const char* stepForward = "\xEF\x81\x91";
        static constexpr const char* stepBackward = "\xEF\x81\x88";
        static constexpr const char* play = "\xEF\x81\x8B";
        static constexpr const char* pause = "\xEF\x81\x8C";
        static constexpr const char* stop = "\xEF\x81\x8D";
        static constexpr const char* stopWatch = "\xEF\x8B\xB2";
        static constexpr const char* hourGlass = "\xEF\x89\x92";
        static constexpr const char* lapsFlag = "\xEF\x80\xA4";
        static constexpr const char* drum = "\xEF\x95\xA9";
        static constexpr const char* chartLine = "\xEF\x88\x81";
        static constexpr const char* eye = "\xEF\x81\xAE";
        static constexpr const char* home = "\xEF\x80\x95";

        // lv_font_sys_48.c
        static constexpr const char* settings = "\xEE\xA2\xB8";

        static constexpr const char* brightnessLow = "\xEE\x8E\xAA";
        static constexpr const char* brightnessMedium = "\xEE\x8E\xAB";
        static constexpr const char* brightnessHigh = "\xEE\x8E\xAC";

        static constexpr const char* notificationsOff = "\xEE\x9F\xB6";
        static constexpr const char* notificationsOn = "\xEE\x9F\xB7";

        static constexpr const char* flashlight = "\xEF\x80\x8B";
      }
    }
  }
}