stargazer firmware: make LED red by default

This commit is contained in:
Joey Castillo 2022-04-21 11:46:56 -04:00
parent 19dac66a3b
commit a6024e9fda
2 changed files with 9 additions and 0 deletions

View File

@ -27,6 +27,11 @@
#include "movement_faces.h"
#define MOVEMENT_CUSTOM_BOOT_COMMANDS() { \
movement_state.settings.bit.led_green_color = 0x0;\
movement_state.settings.bit.led_red_color = 0xF;\
}
const watch_face_t watch_faces[] = {
simple_clock_face,
astronomy_face,

View File

@ -268,6 +268,10 @@ void app_wake_from_backup(void) {
}
void app_setup(void) {
#ifdef MOVEMENT_CUSTOM_BOOT_COMMANDS
MOVEMENT_CUSTOM_BOOT_COMMANDS()
#endif
watch_store_backup_data(movement_state.settings.reg, 0);
static bool is_first_launch = true;