summaryrefslogtreecommitdiff
path: root/src/components/settings/Settings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/settings/Settings.cpp')
-rw-r--r--src/components/settings/Settings.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/settings/Settings.cpp b/src/components/settings/Settings.cpp
new file mode 100644
index 00000000..0c6cf610
--- /dev/null
+++ b/src/components/settings/Settings.cpp
@@ -0,0 +1,16 @@
+#include "Settings.h"
+
+using namespace Pinetime::Controllers;
+
+
+// TODO (team):
+// Read and write the settings to Flash
+//
+void Settings::Init() {
+ // default Clock face
+ clockFace = 0;
+
+ clockType = ClockType::H24;
+
+}
+