]> git.earman.xyz Git - sensor-watch.git/commitdiff
remove outdated guidance from watch face template
authorJoey Castillo <joeycastillo@utexas.edu>
Mon, 4 Aug 2025 11:16:37 +0000 (07:16 -0400)
committerJoey Castillo <joeycastillo@utexas.edu>
Mon, 4 Aug 2025 11:16:37 +0000 (07:16 -0400)
template/template.c
watch-faces/clock/ke_decimal_time_face.c

index 4f2e7e1b28e40d3e179311d446031b8fd216b053..cf51d77881cb02ca758fa4041094a632cc387c80 100644 (file)
@@ -81,11 +81,6 @@ bool <#watch_face_name#>_face_loop(movement_event_t event, void *context) {
     }
 
     // return true if the watch can enter standby mode. Generally speaking, you should always return true.
-    // Exceptions:
-    //  * If you are displaying a color using the low-level watch_set_led_color function, you should return false.
-    //  * If you are sounding the buzzer using the low-level watch_set_buzzer_on function, you should return false.
-    // Note that if you are driving the LED or buzzer using Movement functions like movement_illuminate_led or
-    // movement_play_alarm, you can still return true. This guidance only applies to the low-level watch_ functions.
     return true;
 }
 
index a693aa5a85ff0928a1be77ec6a1568a62e379d55..c2e9961bd4e4649b5ded8da79db542a73688ea70 100644 (file)
@@ -130,11 +130,6 @@ bool ke_decimal_time_face_loop(movement_event_t event, void *context) {
     }
 
     // return true if the watch can enter standby mode. Generally speaking, you should always return true.
-    // Exceptions:
-    //  * If you are displaying a color using the low-level watch_set_led_color function, you should return false.
-    //  * If you are sounding the buzzer using the low-level watch_set_buzzer_on function, you should return false.
-    // Note that if you are driving the LED or buzzer using Movement functions like movement_illuminate_led or
-    // movement_play_alarm, you can still return true. This guidance only applies to the low-level watch_ functions.
     return true;
 }