]> git.earman.xyz Git - sensor-watch.git/commitdiff
Merge PR #454 - add simple calculator watch face
authorMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Sat, 7 Sep 2024 23:38:08 +0000 (20:38 -0300)
committerMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Sat, 7 Sep 2024 23:38:08 +0000 (20:38 -0300)
Adds a simple calculator watch face to the sensor watch
capable of addition, subtraction, multiplication, division
and exponentiation.

Reviewed-by: Joey Castillo <joeycastillo@utexas.edu>
Reviewed-by: Matheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Tested-by: Joey Castillo <joeycastillo@utexas.edu>
Tested-on-hardware-by: mcguirepr89 <mcguirepr89@gmail.com>
GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/454

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

index 221b39f400ff5c7f5c6eee8ef73a6ecc24920bae,40b5be35cc208efa50feb7ba0b3be9dae6fe0759..0de414ed19729061bcac346acc3042f08bdfecf2
@@@ -129,14 -129,7 +129,15 @@@ 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 \
  # 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 f5e463fec95120ba1e0c0044ef63bfecef578916,55d4124bdaab131de3cca8c3970081778a28af17..966d69a0a678a617d65af2ceaf639352926f96fb
  #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"
  // New includes go above this line.
  
  #endif // MOVEMENT_FACES_H_