From 0f03257ee9ef46ac61e20f7201e2c50dedff01b2 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sat, 6 Nov 2021 23:52:00 -0400 Subject: movement: add voltage monitor 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 a937222b..89e3161a 100755 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -33,6 +33,7 @@ SRCS += \ ../watch_faces/thermistor/thermistor_readout_face.c \ ../watch_faces/thermistor/thermistor_logging_face.c \ ../watch_faces/demos/character_set_face.c \ + ../watch_faces/demos/voltage_face.c \ ../watch_faces/complications/beats_face.c \ # Leave this line at the bottom of the file; it has all the targets for making your project. -- cgit v1.2.3 From 1b4bfe35c2ee402314a4aab503bc6d5890eeee91 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Mon, 8 Nov 2021 09:50:54 -0600 Subject: movement: day one watch face, counts days from birth --- 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 89e3161a..aecd6b58 100755 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -35,6 +35,7 @@ SRCS += \ ../watch_faces/demos/character_set_face.c \ ../watch_faces/demos/voltage_face.c \ ../watch_faces/complications/beats_face.c \ + ../watch_faces/complications/day_one_face.c \ # Leave this line at the bottom of the file; it has all the targets for making your project. include $(TOP)/rules.mk -- cgit v1.2.3 From b0ec40ae460063f711cac963b2e7a0d826c710d7 Mon Sep 17 00:00:00 2001 From: Wesley Ellis Date: Wed, 3 Nov 2021 21:10:10 -0400 Subject: Add stopwatch face to movement Simple stopwatch that only counts seconds (not subseconds), minutes and yes, even hours --- 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 aecd6b58..b595d2dd 100755 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -36,6 +36,7 @@ SRCS += \ ../watch_faces/demos/voltage_face.c \ ../watch_faces/complications/beats_face.c \ ../watch_faces/complications/day_one_face.c \ + ../watch_faces/complications/stopwatch_face.c \ # Leave this line at the bottom of the file; it has all the targets for making your project. include $(TOP)/rules.mk -- cgit v1.2.3