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

View File

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