summaryrefslogtreecommitdiffstats
path: root/movement
Commit message (Collapse)AuthorAgeFilesLines
* sunrise/sunset: deal with timezones, other improvementsJoey Castillo2022-01-312-29/+78
|
* sunrise/sunset: always set the sign bitJoey Castillo2022-01-311-1/+1
|
* watch face script: autopopulate yearJoey Castillo2022-01-261-3/+2
|
* minor typo fixDavid Keck2022-01-261-1/+1
|
* added missing newlines to template filesDavid Keck2022-01-262-0/+2
|
* Added license info to scriptDavid Keck2022-01-261-0/+22
|
* Added rough draft of watch_face script to generate custom watch faces from ↵David Keck2022-01-262-1/+76
| | | | template. Corrected template file's missing includes and incorrect memset placeholder.
* movement: add documentation mentioned in #42Joey Castillo2022-01-251-0/+4
|
* movement: add blinky faceJoey Castillo2022-01-254-0/+158
|
* movement: remove blinky faceJoey Castillo2022-01-254-158/+0
|
* movement: add template for watch face generatorJoey Castillo2022-01-254-0/+139
|
* movement: move watch face includes to a separate fileJoey Castillo2022-01-252-19/+49
|
* movement: slight reorganizationJoey Castillo2022-01-2525-14/+14
|
* movement: add two faces to default buildJoey Castillo2022-01-251-0/+2
|
* movement: move beat time to clock folderJoey Castillo2022-01-253-1/+1
|
* Sensor Watch Simulator (#35)Alexsander Akers2022-01-2527-173/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Put something on screen * Use the 32bit watch_date_time repr to pass from JS * Implement periodic callbacks * Clear display on enabling * Hook up watch_set_led_color() to SVG (green-only) * Make debug output full-width * Remove default Emscripten canvas * Implement sleep and button clicks * Fix time zone conversion bug in beats-time app * Clean up warnings * Fix pin levels * Set time zone to browser value (if available) * Add basic backup data saving * Silence format specifier warnings in both targets * Remove unnecessary, copied files * Use RTC pointer to clear callbacks (if available) * Use preprocessor define to avoid hardcoding MOVEMENT_NUM_FACES * Change each face to const preprocessor definition * Remove Intl.DateTimeFormat usage * Update shell.html title, header * Add touch start/end event handlers on SVG buttons * Update shell.html * Update folder structure (shared, simulator, hardware under watch-library) * Tease out shared components from watch_slcd * Clean up simulator watch_slcd.c inline JS calls * Fix missing newlines at end of file * Add simulator warnings (except format, unused-paremter) * Implement remaining watch_rtc functions * Fix button bug on mouse down then drag out * Implement remaining watch_slcd functions * Link keyboard events to buttons (for keys A, L, M) * Rewrite event handling (mouse, touch, keyboard) in C * Set explicit text UTF-8 charset in shell.html * Address PR comments * Remove unused directories from include paths
* movement: add blinky faceJoey Castillo2022-01-234-0/+158
|
* movement: didn't mean to add sunrise/sunset by defaultJoey Castillo2022-01-211-1/+0
|
* movement: simple UI for entering wearer locationJoey Castillo2022-01-212-15/+192
|
* movement: add time zone conversion in sunrise/sunset faceJoey Castillo2022-01-212-5/+9
|
* movement: long press on MODE always dismisses the active faceJoey Castillo2022-01-193-2/+7
|
* Merge pull request #38 from davidskeck/patch-2joeycastillo2022-01-191-1/+1
|\ | | | | Simple Clock: Update to signal exactly on the hour
| * Simple Clock: Update to signal exactly on the hourDavid Keck2022-01-191-1/+1
| | | | | | I was getting the buzzer at 59 minutes past the hour, not exactly on the hour. This changes to buzzing at exactly HOUR:00:00. Tested this locally.
* | Reset selection to 0 on resign from setting stateDavid Keck2022-01-191-0/+1
|/ | | I believe this also needs to be set back to 0 so the setting screen will resume at minutes, not potentially at settings on next run.
* movement: reset tick to 1 Hz between watch faces (fixes #36)Joey Castillo2022-01-1912-17/+8
|
* Changed reset mode to setting instead of waitingDavid Keck2022-01-181-1/+1
| | | After thinking about this, I think it is more intuitive that this would only apply when in setting mode.
* Added ability to reset to default timer valueDavid Keck2022-01-181-1/+8
| | | Added option to reset to the default timer value when in waiting mode and on long press of alarm. This was useful to me as I sometimes accidentally increase the timer value and then would need to loop around to get back to the default value.
* movement: sunrise/sunset face documentationJoey Castillo2022-01-161-2/+2
|
* sunrise/sunset face: no need to update this every secondJoey Castillo2022-01-151-1/+1
|
* Merge branch 'main' of github.com:joeycastillo/Sensor-Watch into mainJoey Castillo2022-01-156-0/+304
|\
| * Merge pull request #29 from tahnok/countdownjoeycastillo2022-01-156-0/+304
| |\ | | | | | | Countdown
| | * Add Countdown FaceWesley Ellis2022-01-154-0/+288
| | | | | | | | | | | | | | | | | | | | | | | | A simple countdown face using movement_schedule_background_task so that it rings, even if the another face is active Limited to 99 minutes and 59 seconds so that the watch isn't staying out of deep sleep for too long
| | * Add movement_cancel_background_taskWesley Ellis2022-01-012-0/+16
| | | | | | | | | | | | Provide a way for a scheduled background task to be cancelled
* | | movement: add sunrise/sunset faceJoey Castillo2022-01-156-0/+625
| | |
* | | add MIT license text to movement filesJoey Castillo2022-01-1531-0/+744
|/ /
* / new simulated screensJoey Castillo2022-01-061-8/+34
|/
* rearrange hello face, documentation reasonsJoey Castillo2021-12-221-6/+6
|
* add comments to 'hello there' faceJoey Castillo2021-12-212-2/+33
|
* add 'hello there' face, demo for documentationJoey Castillo2021-12-214-0/+83
|
* movement: add hourly signal to simple clock faceJoey Castillo2021-12-212-10/+53
|
* add documentation for watch face indexJoey Castillo2021-12-211-0/+3
|
* Movement: give watch faces their index at setup timeJoey Castillo2021-12-2033-34/+49
|
* Movement: allow scheduling precisely timed background tasks (resolves #28)Joey Castillo2021-12-202-0/+45
|
* fix missing prototype warningsJoey Castillo2021-12-1011-53/+53
|
* add demo watch faceJoey Castillo2021-12-104-0/+112
|
* ensure accelerometer test face always stays activeJoey Castillo2021-12-051-1/+5
|
* more accelerometer tests: track interrupts on each axis, log on the quarter hourJoey Castillo2021-12-052-53/+96
|
* movement: remove testing watch face from configJoey Castillo2021-12-031-1/+0
|
* movement: allow watch faces to request zero ticksJoey Castillo2021-12-033-3/+4
|
* movement: update comment; we store this data nowJoey Castillo2021-12-021-2/+2
|