diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2023-01-11 16:25:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 16:25:57 -0500 |
commit | 279954b724bb4a644615eb67d336d054feef09e1 (patch) | |
tree | 2f83b061a418766e1fed80296298a536f544b7ee | |
parent | b28d31ba03c90aebc9d3c57ae0df6fc18c60f826 (diff) | |
parent | 7a41c95d81ddc9b82dc2b0893dd3ae60cb7aa4b4 (diff) | |
download | Sensor-Watch-279954b724bb4a644615eb67d336d054feef09e1.tar.gz Sensor-Watch-279954b724bb4a644615eb67d336d054feef09e1.tar.bz2 Sensor-Watch-279954b724bb4a644615eb67d336d054feef09e1.zip |
Merge pull request #171 from neutralinsomniac/document_tarot_face
add tarot face documentation as per the new template.h
-rw-r--r-- | movement/watch_faces/complication/tarot_face.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/movement/watch_faces/complication/tarot_face.h b/movement/watch_faces/complication/tarot_face.h index e9ffc896..9ff03eb0 100644 --- a/movement/watch_faces/complication/tarot_face.h +++ b/movement/watch_faces/complication/tarot_face.h @@ -27,6 +27,21 @@ #include "movement.h" +/* + * Tarot card watch face + * + * Draw from a deck of the 22 major arcana tarot cards + * + * When "Draw" is shown: + * - Light button: cycle # of cards to draw + * - Alarm button: shuffle deck and draw cards + * + * After cards are drawn/showing: + * - Light button: view the next drawn card + * - Alarm button: shuffle and re-draw new cards + * - Light button (long press): go back to Draw screen. For choosing different # of cards to draw. + */ + #define MAX_CARDS_TO_DRAW 10 typedef struct { |