Skip to content

Commit

Permalink
Adjust hourly chime timing, github, readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zyphlar committed Jan 18, 2024
1 parent e8ee71b commit 652b5c0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
# Run this workflow whenever the build may be affected
on:
push:
branches: [ main, wb/fuzzy, wb/fuzzy-norm, wb/fuzzy-analog, wb/fuzzy-everything-wolf, wb/smellthis ]
branches: [ main, 'wb/*' ]
paths-ignore:
- 'doc/**'
- '**.md'
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

Fast open-source firmware for the [PineTime smartwatch](https://www.pine64.org/pinetime/) with many features, written in modern C++.

## Wadokei fork

Based on [Sudrien's Watchy Wadokei](https://github.com/Sudrien/watchy_wadokei) --
displays an Edo-period Japanese clock face and a sunrise/sunset-based hour hand.

Also chimes hours according to the number on the face (9,8,7,6,5,4) at the top
of each modern hour (so noon and 1pm will be 9 chimes, 2pm and 3pm will be 8, etc).

See https://github.com/Sudrien/watchy_wadokei/blob/main/Reckoning.md for more ideas!

## New to InfiniTime?

- [Getting started with InfiniTime](doc/gettingStarted/gettingStarted-1.0.md)
Expand Down
4 changes: 2 additions & 2 deletions src/displayapp/DisplayApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ void DisplayApp::Refresh() {

for (uint8_t i=0; i<myChimes; i++){
// NRF_LOG_INFO("buzz!");
motorController.RunForDuration(35);
vTaskDelay(800);
motorController.RunForDuration(15);
vTaskDelay(1000);
}
break;
case Messages::OnChargingEvent:
Expand Down

0 comments on commit 652b5c0

Please sign in to comment.