summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/ApplicationList.h
diff options
context:
space:
mode:
authorRaupinger <fgrauper@gmail.com>2021-02-23 08:01:58 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-06-11 04:07:35 (GMT)
commit7f08e2c63608185b741fd5270a0aee4bd225f140 (patch)
tree4609699c5608e4d8c23659c8c5dfc31097b28a74 /src/displayapp/screens/ApplicationList.h
parent2ecb4a6fc7b862280281d9ac762953cb14b7eea6 (diff)
Add Calculator screen as new App
A calculator based on the Shunting-yard algorithm as described here: https://en.wikipedia.org/wiki/Shunting-yard_algorithm Moving the Motion App into the Settings screen to use the tile in the ApplicationList for the Calculator.
Diffstat (limited to 'src/displayapp/screens/ApplicationList.h')
-rw-r--r--src/displayapp/screens/ApplicationList.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/displayapp/screens/ApplicationList.h b/src/displayapp/screens/ApplicationList.h
index d2ede1b..1640227 100644
--- a/src/displayapp/screens/ApplicationList.h
+++ b/src/displayapp/screens/ApplicationList.h
@@ -48,6 +48,7 @@ namespace Pinetime {
{Symbols::map, Apps::Navigation},
{Symbols::drum, Apps::Jumpscore},
+ {Symbols::calculator, Apps::Calculator},
};
std::array<std::array<Tile::Applications, appsPerScreen>, ((std::size(list) + appsPerScreen - 1) / appsPerScreen)> r{};;
int idx = 0;