diff options
author | ConfuSomu | 2021-04-08 14:24:59 -0400 |
---|---|---|
committer | ConfuSomu | 2021-04-08 14:24:59 -0400 |
commit | 4dd7d6d83247d39272d1d82cae9099efe471255f (patch) | |
tree | 3df58431bdd67d9ed53c60b2d0fbae139a2059dc | |
parent | 7cf684c7ae435e749565cb8465f59410a9242657 (diff) | |
download | pico-watch-4dd7d6d83247d39272d1d82cae9099efe471255f.tar pico-watch-4dd7d6d83247d39272d1d82cae9099efe471255f.tar.gz pico-watch-4dd7d6d83247d39272d1d82cae9099efe471255f.zip |
Update default datetime to more recent values
-rw-r--r-- | init.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -11,12 +11,12 @@ // Initial date & time // The idea is to have the compiler set the date at compile-time. // DOTW: 0 is Sunday -#define INIT_DATETIME_YEAR 2020 -#define INIT_DATETIME_MONTH 06 -#define INIT_DATETIME_DAY 05 -#define INIT_DATETIME_DOTW 5 -#define INIT_DATETIME_HOUR 15 -#define INIT_DATETIME_MIN 45 +#define INIT_DATETIME_YEAR 2021 +#define INIT_DATETIME_MONTH 4 +#define INIT_DATETIME_DAY 8 +#define INIT_DATETIME_DOTW 4 +#define INIT_DATETIME_HOUR 13 +#define INIT_DATETIME_MIN 53 #define INIT_DATETIME_SEC 00 // Time (ms) before entering sleep |