summaryrefslogtreecommitdiffstats
path: root/movement/movement.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'main' into theAlexes/cleanupWesley Aptekar-Cassels2024-01-211-1/+0
|\
| * Revert "Merge pull request #283 from ↵Wesley Aptekar-Cassels2024-01-091-1/+0
| | | | | | | | | | | | | | neutralinsomniac/fix_hourly_chime_background" This reverts commit 5c94111ea20e50cb9dab8f416603403185e933b3, reversing changes made to bc9b4ce700d3f12adc0daceaa880e3d638df0c2b.
* | make it clear that the movement_state contains indexesAlex Maestas2023-12-161-2/+2
|/
* move buzzer enabled detection logic into movement for movement_play_signal/tuneJeremy O'Brien2023-09-231-2/+0
| | | | | this way watch faces don't have to disable/enable the buzzer themselves before calling movement_play_signal() and movement_play_tune()
* fix signal tunes not firing in background, and split out ↵Jeremy O'Brien2023-09-221-0/+3
| | | | foreground/background chime functions
* add movement_default_loop_handler, test with default watch facesjoeycastillo2023-01-141-0/+3
|
* Add stock stopwatch face (#140)TheOnePerson2023-01-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * buzzer sequences: first draft, does not work on hardware yet (but in simulator) * buzzer sequences: add changes to movement.c * buzzer sequences: add demo face to Makefile * buzzer sequences: fix problem of interrupted sounds. Add logic for repeating sub sequences. Tidy up (move logic to watch_buzzer files, remove buzzer_demo_face) * buzzer sequences: tidy up even more * buzzer sequences: disable registering a 32 Hz tick callback for watch faces, so it will be used exclusively by the buzzer sequences functionality * buzzer sequences: add callback slot functionality to watch_rtc and make watch_buzzer use it. Switch internal buzzer sequences tick frequency to 64 Hz. Revert changes to movement.c * buzzer sequences: fix parameter sanity check in watch_rtc code * stock stopwatch: first fully functional implementation * stock stopwatch: fix typo in comment * stock stopwatch: handle resuming from deep sleep mode properly * buzzer sequences/watch_rtc: optimize calling tick callbacks in RTC_Handler * buzzer sequences/watch_rtc: fix error in calling callback functions * stock stopwatch: implement workaround for sleep mode * stock stopwatch: merge current main into stock-stopwatch * stock stopwatch: use TC counters as source for callbacks * stock-stopwatch: revert unnecessary changes to watch_buzzer Co-authored-by: joeycastillo <joeycastillo@utexas.edu>
* Merge branch 'main' into auto-fire-long-pressTheOnePerson2022-10-261-1/+1
|\
| * Add an Alarm face to movement (#96)TheOnePerson2022-10-251-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add movement_play_alarm_beeps() to movement.c and make alarm sounds customizable. Add alarm indicator to simple watch face. * Add alarm face * alarm_face: fix problem with disabling alarms for 00:00. * Fix typos in comments and get rid of of unused variable warning * remove unnecessary constant * simple_clock_face: fix disappearing chime indicator after face switch, enable alarm indicator updates in app loop (for one-time alarms). movement: handle situations where watch is in sleep mode and chimes fire off at the same time as alarms properly. * alarm_face: tweak process of displaying things on the lcd. Add extra long and extra short alarms. Increase number of alarm slots to 16. * alarm face: fix alarms playing one beeping round more than set. * alarm face: add proper quick cycling of hour and minute setting * alarm-face: correct am/pm indication and some minor tweaks. Reset movement_config.h to current main branch. simple-watch-face: Remove unnecessary check and swap indicators (alarm / hourly chime) * alarm-face: reverse commit parts from another branch (accidentially commited logic depending on movement firmware auto firing the long press event) Co-authored-by: joeycastillo <joeycastillo@utexas.edu>
* | movement: update comments regarding button eventsTheOnePerson2022-10-251-9/+9
| |
* | Movement: implement auto firing of long press events and introduce long up ↵TheOnePerson2022-10-231-7/+13
|/ | | | event. (Also re-implement alarm_enabled and alarm_note)
* allow watch faces to schedule tasks from backgroundjoeycastillo2022-10-221-0/+4
|
* document return value of watch_face_loopjoeycastillo2022-10-111-1/+5
|
* movement: fix movement_request_wake() prototypeJack Bond-Preston2022-07-251-1/+1
| | | | This function has `void` args, currently it can throw a compiler warning
* movement: wake programmatically from background and play alarmJoey Castillo2022-07-171-0/+3
|
* movement: add mechanism for watch faces to use backup registersJoey Castillo2022-02-131-0/+5
|
* movement: prevent invalid tick frequency from breaking scheduled tasksJoey Castillo2022-02-121-2/+0
|
* movement: long press on MODE always dismisses the active faceJoey Castillo2022-01-191-1/+1
|
* Merge branch 'main' of github.com:joeycastillo/Sensor-Watch into mainJoey Castillo2022-01-151-0/+4
|\
| * Add movement_cancel_background_taskWesley Ellis2022-01-011-0/+4
| | | | | | | | Provide a way for a scheduled background task to be cancelled
* | add MIT license text to movement filesJoey Castillo2022-01-151-0/+24
|/
* add documentation for watch face indexJoey Castillo2021-12-211-0/+3
|
* Movement: give watch faces their index at setup timeJoey Castillo2021-12-201-1/+1
|
* Movement: allow scheduling precisely timed background tasks (resolves #28)Joey Castillo2021-12-201-0/+9
|
* fix missing prototype warningsJoey Castillo2021-12-101-4/+4
|
* movement: update comment; we store this data nowJoey Castillo2021-12-021-2/+2
|
* movement: add option to always snap back to first watch faceJoey Castillo2021-12-021-1/+2
|
* movement: add alarm and signal functionsJoey Castillo2021-11-291-1/+8
|
* movement: more granular button and LED timing via fast tickJoey Castillo2021-11-291-2/+3
|
* background tasks have been implementedJoey Castillo2021-11-271-1/+0
|
* movement: add world clock faceJoey Castillo2021-11-261-0/+2
|
* movement: store settings in BKUP to persist across resetsJoey Castillo2021-11-251-4/+4
|
* movement: implement time zone settingJoey Castillo2021-11-251-1/+3
|
* movement: preferences refactor, two new typesJoey Castillo2021-11-081-11/+61
|
* movement: first crack at background tasks APIJoey Castillo2021-10-231-0/+3
|
* movement: add thermistor readout faceJoey Castillo2021-10-211-2/+8
|
* movement settings: add timeout and LED durationJoey Castillo2021-10-191-4/+4
|
* add timeout event to give faces a chance to resignJoey Castillo2021-10-181-1/+6
|
* early work on background tasks, documentationJoey Castillo2021-10-161-1/+92
|
* remove unimplemented settings for nowJoey Castillo2021-10-161-5/+1
|
* screensaver mode is now low energy modeJoey Castillo2021-10-161-4/+4
|
* clarify property namesJoey Castillo2021-10-161-2/+2
|
* rename types to be more c-likeJoey Castillo2021-10-161-10/+10
|
* widgets are now watch facesJoey Castillo2021-10-161-17/+17
|
* launcher is now movementJoey Castillo2021-10-161-0/+89