From ccdf08da876d2c66bbc54cc246443676c4f9bf2e Mon Sep 17 00:00:00 2001 From: joeycastillo Date: Fri, 4 Mar 2022 14:52:49 -0600 Subject: Movement: Astronomy and Orrery watch faces (#55) --- movement/make/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'movement/make/Makefile') diff --git a/movement/make/Makefile b/movement/make/Makefile index 9231d5ce..cd4471b5 100755 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -18,6 +18,8 @@ INCLUDES += \ -I../watch_faces/demo/ \ -I../lib/TOTP-MCU/ \ -I../lib/sunriset/ \ + -I../lib/vsop87/ \ + -I../lib/astrolib/ \ # If you add any other source files you wish to compile, add them after ../app.c # Note that you will need to add a backslash at the end of any line you wish to continue, i.e. @@ -29,6 +31,8 @@ SRCS += \ ../lib/TOTP-MCU/sha1.c \ ../lib/TOTP-MCU/TOTP.c \ ../lib/sunriset/sunriset.c \ + ../lib/vsop87/vsop87a_milli.c \ + ../lib/astrolib/astrolib.c \ ../movement.c \ ../watch_faces/clock/simple_clock_face.c \ ../watch_faces/clock/world_clock_face.c \ @@ -50,6 +54,8 @@ SRCS += \ ../watch_faces/complication/countdown_face.c \ ../watch_faces/complication/blinky_face.c \ ../watch_faces/complication/moon_phase_face.c \ + ../watch_faces/complication/orrery_face.c \ + ../watch_faces/complication/astronomy_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. -- cgit v1.2.3 From 4ebc4e97ce3aa46909907f8b50a23ceb520326e0 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Fri, 1 Apr 2022 15:42:49 -0400 Subject: movement: add thermistor testing watch face --- movement/make/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'movement/make/Makefile') diff --git a/movement/make/Makefile b/movement/make/Makefile index cd4471b5..1e529954 100755 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -41,6 +41,7 @@ SRCS += \ ../watch_faces/settings/set_time_face.c \ ../watch_faces/sensor/thermistor_readout_face.c \ ../watch_faces/sensor/thermistor_logging_face.c \ + ../watch_faces/sensor/thermistor_testing_face.c \ ../watch_faces/demo/character_set_face.c \ ../watch_faces/demo/voltage_face.c \ ../watch_faces/demo/lis2dh_logging_face.c \ -- cgit v1.2.3 From 1ec1f2e4207405d55c34c936e2c458cb4a7e8806 Mon Sep 17 00:00:00 2001 From: Wesley Ellis Date: Wed, 6 Apr 2022 14:33:24 -0400 Subject: Add tomato face: a pomodoro style timer (#61) --- movement/make/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'movement/make/Makefile') diff --git a/movement/make/Makefile b/movement/make/Makefile index 1e529954..0f1e711a 100755 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -57,6 +57,7 @@ SRCS += \ ../watch_faces/complication/moon_phase_face.c \ ../watch_faces/complication/orrery_face.c \ ../watch_faces/complication/astronomy_face.c \ + ../watch_faces/complication/tomato_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. -- cgit v1.2.3