2020-07-04 11:58:15 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
namespace Symbols {
|
2020-08-17 14:31:00 +00:00
|
|
|
static constexpr const char* none = "";
|
|
|
|
static constexpr const char* batteryFull = "\xEF\x89\x80";
|
|
|
|
static constexpr const char* batteryEmpty = "\xEF\x89\x84";
|
|
|
|
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* bluetoothFull = "\xEF\x8A\x93";
|
|
|
|
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* asterisk = "\xEF\x81\xA9";
|
2020-08-21 09:55:59 +00:00
|
|
|
static constexpr const char* paintbrush = "\xEF\x87\xBC";
|
2020-12-04 08:39:12 +00:00
|
|
|
static constexpr const char* paddle = "\xEF\x91\x9D";
|
2021-01-20 20:34:09 +00:00
|
|
|
static constexpr const char* map = "\xEF\x96\xa0";
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr const char* qrcode = "\xEF\x80\xa9";
|
2021-01-27 12:42:04 +00:00
|
|
|
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";
|
2021-03-13 13:38:18 +00:00
|
|
|
static constexpr const char* stop = "\xEF\x81\x8D";
|
|
|
|
static constexpr const char* stopWatch = "\xEF\x8B\xB2";
|
2021-05-20 18:43:54 +00:00
|
|
|
static constexpr const char* hourGlass = "\xEF\x89\x92";
|
2021-03-13 13:38:18 +00:00
|
|
|
static constexpr const char* lapsFlag = "\xEF\x80\xA4";
|
2021-07-02 15:34:32 +00:00
|
|
|
static constexpr const char* drum = "\xEF\x95\xA9";
|
2021-07-13 13:30:24 +00:00
|
|
|
static constexpr const char* chartLine = "\xEF\x88\x81";
|
|
|
|
static constexpr const char* eye = "\xEF\x81\xAE";
|
|
|
|
static constexpr const char* home = "\xEF\x80\x95";
|
2021-04-04 02:08:51 +00:00
|
|
|
|
|
|
|
// lv_font_sys_48.c
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr const char* settings = "\xEE\xA4\x82"; // e902
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
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
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr const char* notificationsOff = "\xEE\xA4\x8B"; // e90b
|
|
|
|
static constexpr const char* notificationsOn = "\xEE\xA4\x8C"; // e90c
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr const char* highlight = "\xEE\xA4\x87"; // e907
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2020-07-04 11:58:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-03 14:16:36 +00:00
|
|
|
}
|