@@ -49,20 +49,29 @@ static void _sunrise_sunset_face_update(movement_settings_t *settings, sunrise_s
49
49
double rise , set , minutes , seconds ;
50
50
bool show_next_match = false;
51
51
movement_location_t movement_location ;
52
- if (state -> longLatToUse == 0 || _location_count <= 1 )
52
+ int16_t tz ;
53
+ watch_date_time date_time = watch_rtc_get_date_time (); // the current local date / time
54
+ if (state -> longLatToUse == 0 || _location_count <= 1 ) {
55
+ tz = get_timezone_offset (settings -> bit .time_zone , date_time );
53
56
movement_location = (movement_location_t ) watch_get_backup_data (1 );
57
+ }
54
58
else {
55
59
movement_location .bit .latitude = longLatPresets [state -> longLatToUse ].latitude ;
56
60
movement_location .bit .longitude = longLatPresets [state -> longLatToUse ].longitude ;
61
+ if (longLatPresets [state -> longLatToUse ].uses_dst && dst_occurring (date_time ))
62
+ tz = movement_timezone_dst_offsets [longLatPresets [state -> longLatToUse ].timezone ];
63
+ else
64
+ tz = movement_timezone_offsets [longLatPresets [state -> longLatToUse ].timezone ];
57
65
}
58
66
59
67
if (movement_location .reg == 0 ) {
68
+ watch_clear_all_indicators ();
69
+ watch_clear_colon ();
60
70
watch_display_string ("RI no Loc" , 0 );
61
71
return ;
62
72
}
63
73
64
- watch_date_time date_time = watch_rtc_get_date_time (); // the current local date / time
65
- watch_date_time utc_now = watch_utility_date_time_convert_zone (date_time , state -> tz * 60 , 0 ); // the current date / time in UTC
74
+ watch_date_time utc_now = watch_utility_date_time_convert_zone (date_time , tz * 60 , 0 ); // the current date / time in UTC
66
75
watch_date_time scratch_time ; // scratchpad, contains different values at different times
67
76
scratch_time .reg = utc_now .reg ;
68
77
@@ -77,7 +86,7 @@ static void _sunrise_sunset_face_update(movement_settings_t *settings, sunrise_s
77
86
// sunriset returns the rise/set times as signed decimal hours in UTC.
78
87
// this can mean hours below 0 or above 31, which won't fit into a watch_date_time struct.
79
88
// to deal with this, we set aside the offset in hours, and add it back before converting it to a watch_date_time.
80
- double hours_from_utc = ((double )state -> tz ) / 60.0 ;
89
+ double hours_from_utc = ((double )tz ) / 60.0 ;
81
90
82
91
// we loop twice because if it's after sunset today, we need to recalculate to display values for tomorrow.
83
92
for (int i = 0 ; i < 2 ; i ++ ) {
@@ -334,7 +343,6 @@ void sunrise_sunset_face_activate(movement_settings_t *settings, void *context)
334
343
movement_location_t movement_location = (movement_location_t ) watch_get_backup_data (1 );
335
344
state -> working_latitude = _sunrise_sunset_face_struct_from_latlon (movement_location .bit .latitude );
336
345
state -> working_longitude = _sunrise_sunset_face_struct_from_latlon (movement_location .bit .longitude );
337
- state -> tz = get_timezone_offset (settings -> bit .time_zone , watch_rtc_get_date_time ());
338
346
}
339
347
340
348
bool sunrise_sunset_face_loop (movement_event_t event , movement_settings_t * settings , void * context ) {
@@ -399,11 +407,11 @@ bool sunrise_sunset_face_loop(movement_event_t event, movement_settings_t *setti
399
407
break ;
400
408
case EVENT_ALARM_LONG_PRESS :
401
409
if (state -> page == 0 ) {
402
- if (state -> longLatToUse != 0 ) {
403
- state -> longLatToUse = 0 ;
404
- _sunrise_sunset_face_update (settings , state );
405
- break ;
406
- }
410
+ if (state -> longLatToUse != 0 ) {
411
+ state -> longLatToUse = 0 ;
412
+ _sunrise_sunset_face_update (settings , state );
413
+ break ;
414
+ }
407
415
state -> page ++ ;
408
416
state -> active_digit = 0 ;
409
417
watch_clear_display ();
0 commit comments