Browse code

Enable 4 alarms, fix alarm UI, implement a rough version of the main menu

Dario Rodriguez authored on 08/01/2014 22:59:59
Showing 1 changed files
... ...
@@ -3,6 +3,7 @@
3 3
 
4 4
 void DrawLcdAnaClock(boolean show_seconds);
5 5
 void DrawLcdDigitalClock(boolean show_seconds);
6
+void DrawLcdDigitalClock2(boolean show_seconds);
6 7
 void DrawCalendarClock(boolean show_seconds);
7 8
 void DrawHelpClock(boolean show_seconds);
8 9
 
Browse code

Replace font handling, add new watch face, add calendar. More watchfaces, make calendar interactive and start rearranging button functions

Dario Rodriguez authored on 17/12/2013 22:59:59
Showing 1 changed files
... ...
@@ -3,6 +3,8 @@
3 3
 
4 4
 void DrawLcdAnaClock(boolean show_seconds);
5 5
 void DrawLcdDigitalClock(boolean show_seconds);
6
+void DrawCalendarClock(boolean show_seconds);
7
+void DrawHelpClock(boolean show_seconds);
6 8
 
7 9
 #endif
8 10
 
Browse code

Make idle selectable

Nils Faerber authored on 12/08/2012 02:11:30
Showing 1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 #ifndef _OSWALD_WATCH_FACES_H
2 2
 #define _OSWALD_WATCH_FACES_H
3 3
 
4
-void DrawLcdAnaClock(void);
5
-void DrawLcdDigitalClock(void);
4
+void DrawLcdAnaClock(boolean show_seconds);
5
+void DrawLcdDigitalClock(boolean show_seconds);
6 6
 
7 7
 #endif
8 8
 
Browse code

Add support for more screens

Nils Faerber authored on 06/08/2012 14:12:20
Showing 1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 #ifndef _OSWALD_WATCH_FACES_H
2 2
 #define _OSWALD_WATCH_FACES_H
3 3
 
4
-void DrawLcdAnaClock(boolean show_seconds);
5
-void DrawLcdDigitalClock(boolean show_seconds);
4
+void DrawLcdAnaClock(void);
5
+void DrawLcdDigitalClock(void);
6 6
 
7 7
 #endif
8 8
 
Browse code

Too much to note...

Nils Faerber authored on 05/08/2012 17:07:17
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,8 @@
1
+#ifndef _OSWALD_WATCH_FACES_H
2
+#define _OSWALD_WATCH_FACES_H
3
+
4
+void DrawLcdAnaClock(boolean show_seconds);
5
+void DrawLcdDigitalClock(boolean show_seconds);
6
+
7
+#endif
8
+