Updated Readme and adjusted quicksettings

This commit is contained in:
tofasthacker 2023-09-27 16:38:10 -04:00
parent 163eaf5ab4
commit c8de75ccd9
2 changed files with 10 additions and 5 deletions

View File

@ -4,6 +4,11 @@
- [x] Swipe left to access music control
- [x] Flashlight starts on
- [x] Calculator
- [x] Redo music control gestures
- [x] Swipe up toggles control mode and swipe down exits
- [x] Swipe left/right goes to watchface/another app
- [x] Rearrange quick acces and apps
## Pending merge
@ -15,9 +20,6 @@
- [ ] Seconds on digital watchface
### Moses
- [ ] Redo music control gestures
- [ ] Swipe up toggles control mode and swipe down exits
- [ ] Swipe left/right goes to watchface/another app
## Medium priority
- [ ] Temp sensor w/ arduino
@ -26,5 +28,4 @@
- [ ] Exponent button on calculator
## Lower priority
- [ ] Rearrange quick acces and apps
- [ ] Maybe some prank watchfaces

View File

@ -299,12 +299,16 @@ void DisplayApp::Refresh() {
case TouchEvents::SwipeUp:
if (currentApp == Apps::Clock) {
LoadNewScreen(Apps::Launcher, DisplayApp::FullRefreshDirections::Up);
} else if (currentApp == Apps::QuickSettings) {
LoadNewScreen(Apps::Settings, DisplayApp::FullRefreshDirections::Up);
}
break;
case TouchEvents::SwipeDown:
if (currentApp == Apps::Clock) {
LoadNewScreen(Apps::Notifications, DisplayApp::FullRefreshDirections::Down);
}
} else if (currentApp == Apps::QuickSettings) {
LoadNewScreen(Apps::FlashLight, DisplayApp::FullRefreshDirections::Down);
}
break;
case TouchEvents::SwipeRight:
if (currentApp == Apps::Clock) {