Skip to content

Commit accbd75

Browse files
committed
include prime watchface
1 parent fede286 commit accbd75

5 files changed

Lines changed: 14 additions & 0 deletions

File tree

src/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,7 @@ list(APPEND SOURCE_FILES
427427
displayapp/screens/WatchFaceTerminal.cpp
428428
displayapp/screens/WatchFacePineTimeStyle.cpp
429429
displayapp/screens/WatchFaceCasioStyleG7710.cpp
430+
displayapp/screens/WatchFacePrime.cpp
430431

431432
##
432433

src/displayapp/UserApps.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#include "displayapp/screens/Tile.h"
1010
#include "displayapp/screens/ApplicationList.h"
1111
#include "displayapp/screens/WatchFaceDigital.h"
12+
#include "displayapp/screens/WatchFacePrime.h"
1213
#include "displayapp/screens/WatchFaceAnalog.h"
1314
#include "displayapp/screens/WatchFaceCasioStyleG7710.h"
1415
#include "displayapp/screens/WatchFaceInfineat.h"

src/displayapp/apps/Apps.h.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ namespace Pinetime {
5353
Terminal,
5454
Infineat,
5555
CasioStyleG7710,
56+
Prime,
5657
};
5758

5859
template <Apps>

src/displayapp/apps/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ else()
2828
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Terminal")
2929
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Infineat")
3030
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::CasioStyleG7710")
31+
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Prime")
3132
set(WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}" CACHE STRING "List of watch faces to build into the firmware")
3233
endif()
3334

src/displayapp/fonts/fonts.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,15 @@
7373
],
7474
"bpp": 1,
7575
"size": 25
76+
},
77+
"prime": {
78+
"sources": [
79+
{
80+
"file": "Karnivore.ttf",
81+
"symbols": "0123456789:"
82+
}
83+
],
84+
"bpp": 1,
85+
"size": 95
7686
}
7787
}

0 commit comments

Comments
 (0)