Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maze watchface #2146

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
10f79e5
Add dummy WatchFaceMaze
Feksaaargh Oct 2, 2024
3456e0d
Add basic maze printing functionality
Feksaaargh Oct 9, 2024
eea241e
Add maze generation and numbers
Feksaaargh Oct 16, 2024
7409bf9
Show loss on long tap
Feksaaargh Oct 16, 2024
4f69fd6
Add new secrets
Feksaaargh Oct 20, 2024
0dc3e3c
Add whitespace and comments to WatchFaceMaze.h
Feksaaargh Oct 20, 2024
1bf7ca9
Refactor WatchFaceMaze.cpp
Feksaaargh Oct 20, 2024
64d1b84
Rename PutNumbers and adjust AMPM display
Feksaaargh Oct 20, 2024
2123db0
Fix autism creature display error
Feksaaargh Oct 20, 2024
1579396
Add battery and BLE indicators
Feksaaargh Oct 20, 2024
31ced38
Add low battery colors
Feksaaargh Oct 20, 2024
4efb4b9
Make Update*Display functions have default value
Feksaaargh Oct 20, 2024
eba2baf
Add confetti to autismcreature secret
Feksaaargh Oct 22, 2024
1543ff4
Make confetti multicolored
Feksaaargh Oct 23, 2024
52928f4
Make confetti square rather than wall aligned (and adjust movement pa…
Feksaaargh Oct 23, 2024
36a2877
Improve confetti spread by using angles
Feksaaargh Oct 23, 2024
169c8a1
Allow inputting a secret code while already on the secret page
Feksaaargh Oct 23, 2024
484ac78
Organize code and improve header comments
Feksaaargh Oct 23, 2024
0c488ce
Remove add mutex todo; not needed
Feksaaargh Oct 23, 2024
33492a2
Add maze watchface to default watchfaces
Feksaaargh Oct 24, 2024
abc980f
Update WatchFaceMaze
Feksaaargh Oct 28, 2024
2d863e1
Change warning
Feksaaargh Oct 30, 2024
8aa81ab
Merge branch 'InfiniTimeOrg:main' into maze-watchface
Feksaaargh Oct 30, 2024
4575be8
Merge branch 'refs/heads/main' into maze-watchface
Feksaaargh Jan 23, 2025
4dad28e
Speed up generation
Feksaaargh Jan 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ list(APPEND SOURCE_FILES
displayapp/screens/WatchFaceTerminal.cpp
displayapp/screens/WatchFacePineTimeStyle.cpp
displayapp/screens/WatchFaceCasioStyleG7710.cpp
displayapp/screens/WatchFaceMaze.cpp

##

Expand Down
1 change: 1 addition & 0 deletions src/displayapp/UserApps.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "displayapp/screens/WatchFaceInfineat.h"
#include "displayapp/screens/WatchFacePineTimeStyle.h"
#include "displayapp/screens/WatchFaceTerminal.h"
#include "displayapp/screens/WatchFaceMaze.h"

namespace Pinetime {
namespace Applications {
Expand Down
1 change: 1 addition & 0 deletions src/displayapp/apps/Apps.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ namespace Pinetime {
Terminal,
Infineat,
CasioStyleG7710,
Maze,
};

template <Apps>
Expand Down
1 change: 1 addition & 0 deletions src/displayapp/apps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ else()
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Terminal")
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Infineat")
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::CasioStyleG7710")
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Maze")
set(WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}" CACHE STRING "List of watch faces to build into the firmware")
endif()

Expand Down
Loading
Loading