summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/clock/repetition_minute_face.h
blob: 8c3100ddcbde2f6269a33eb5b5b7f9a7a1f36f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * MIT License
 *
 * Copyright (c) 2023 Jonas Termeau
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#ifndef REPETITION_MINUTE_FACE_H_
#define REPETITION_MINUTE_FACE_H_

/*
 * REPETITION MINUTE face
 *
 * A hopefully useful complication for friendly neighbors in the dark
 *
 * Originating from 1676 from reverend and mechanician Edward Barlow, and
 * perfected in 1820 by neighbor Abraham Breguet, a minute repeater or 
 * "repetition minute" is a complication in a mechanical watch or clock that
 * chimes the hours and often minutes at the press of a button. There are many
 * types of repeater, from the simple repeater which merely strikes the number
 * of hours, to the minute repeater which chimes the time down to the minute,
 * using separate tones for hours, quarter hours, and minutes. They originated
 * before widespread artificial illumination, to allow the time to be determined
 * in the dark, and were also used by the visually impaired. 
 *
 * How to use it :
 * 
 * Long press the light button to get an auditive reading of the time like so :
 * 0..23 (1..12 if 24-hours format isn't enabled) low beep(s) for the hours
 * 0..3 low-high couple pitched beeps for the quarters
 * 0..14 high pitched beep(s) for the remaining minutes
 *
 * Prerequisite : a watch with a working buzzer
 * 
 * ~ Only in the darkness can you see the stars. - Martin Luther King ~
 */

#include "movement.h"

typedef struct {
    uint32_t previous_date_time;
    uint8_t last_battery_check;
    uint8_t watch_face_index;
    bool signal_enabled;
    bool battery_low;
    bool alarm_enabled;
} repetition_minute_state_t;

void play_hour_chime(void);
void play_quarter_chime(void);
void play_minute_chime(void);
void repetition_minute_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr);
void repetition_minute_face_activate(movement_settings_t *settings, void *context);
bool repetition_minute_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
void repetition_minute_face_resign(movement_settings_t *settings, void *context);
bool repetition_minute_face_wants_background_task(movement_settings_t *settings, void *context);

#define repetition_minute_face ((const watch_face_t){ \
    repetition_minute_face_setup, \
    repetition_minute_face_activate, \
    repetition_minute_face_loop, \
    repetition_minute_face_resign, \
    repetition_minute_face_wants_background_task, \
})

#endif // REPETITION_MINUTE_FACE_H_