17 lines
230 B
C++
17 lines
230 B
C++
#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;
|
|
|
|
}
|
|
|