]> git.earman.xyz Git - sensor-watch.git/commitdiff
Merge PR #413 - add thermometer face
authorMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Sat, 7 Sep 2024 23:49:19 +0000 (20:49 -0300)
committerMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Sat, 7 Sep 2024 23:49:19 +0000 (20:49 -0300)
Measures the temperature until it stabilizes for half a minute.

This watch face is not meant to diagnose, treat, cure or prevent
any disease.

Reviewed-by: Matheus Afonso Martins Moreira <matheus@matheusmoreira.com>
GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/413

1  2 
movement/make/Makefile
movement/movement_faces.h

index 0de414ed19729061bcac346acc3042f08bdfecf2,da32a45e9fe2101d361b221eaccb2cae3fc89427..0adcbe57bf5336b040c0a55e87854739182b8c8f
@@@ -129,15 -129,7 +129,16 @@@ SRCS += 
    ../watch_faces/clock/minute_repeater_decimal_face.c \
    ../watch_faces/complication/tuning_tones_face.c \
    ../watch_faces/complication/kitchen_conversions_face.c \
 +  ../watch_faces/complication/wordle_face.c \
 +  ../watch_faces/complication/endless_runner_face.c \
 +  ../watch_faces/complication/periodic_face.c \
 +  ../watch_faces/complication/deadline_face.c
 +  ../watch_faces/complication/higher_lower_game_face.c \
 +  ../watch_faces/clock/french_revolutionary_face.c \
 +  ../watch_faces/clock/minimal_clock_face.c \
 +  ../watch_faces/complication/simon_face.c \
 +  ../watch_faces/complication/simple_calculator_face.c \
+   ../watch_faces/sensor/alarm_thermometer_face.c \
  # New watch faces go above this line.
  
  # Leave this line at the bottom of the file; it has all the targets for making your project.
index 966d69a0a678a617d65af2ceaf639352926f96fb,fda91ac9d1ee3fae5601b6ba5710c9df369319bd..392075b9542d69e4c576f79e216c38156c19ba64
  #include "minute_repeater_decimal_face.h"
  #include "tuning_tones_face.h"
  #include "kitchen_conversions_face.h"
 +#include "wordle_face.h"
 +#include "endless_runner_face.h"
 +#include "periodic_face.h"
 +#include "deadline_face.h"
 +#include "higher_lower_game_face.h"
 +#include "french_revolutionary_face.h"
 +#include "minimal_clock_face.h"
 +#include "simon_face.h"
 +#include "simple_calculator_face.h"
+ #include "alarm_thermometer_face.h"
  // New includes go above this line.
  
  #endif // MOVEMENT_FACES_H_