1 Commits

Author SHA1 Message Date
652b5c03f8 Adjust hourly chime timing, github, readme 2024-01-18 14:15:18 -08:00
3 changed files with 13 additions and 3 deletions

View File

@@ -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'

View File

@@ -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)

View File

@@ -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: