bushmango 2024-04-02 23:01:42 -04:00 committed by GitHub
commit d76f1009c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 0 deletions

View File

@ -134,6 +134,7 @@ void Watchy::handleButtonPress() {
} else if (guiState == FW_UPDATE_STATE) { } else if (guiState == FW_UPDATE_STATE) {
showMenu(menuIndex, false); // exit to menu if already in app showMenu(menuIndex, false); // exit to menu if already in app
} else if (guiState == WATCHFACE_STATE) { } else if (guiState == WATCHFACE_STATE) {
button1();
return; return;
} }
} }
@ -146,6 +147,7 @@ void Watchy::handleButtonPress() {
} }
showMenu(menuIndex, true); showMenu(menuIndex, true);
} else if (guiState == WATCHFACE_STATE) { } else if (guiState == WATCHFACE_STATE) {
button2();
return; return;
} }
} }
@ -158,6 +160,7 @@ void Watchy::handleButtonPress() {
} }
showMenu(menuIndex, true); showMenu(menuIndex, true);
} else if (guiState == WATCHFACE_STATE) { } else if (guiState == WATCHFACE_STATE) {
button3();
return; return;
} }
} }
@ -625,6 +628,17 @@ void Watchy::drawWatchFace() {
display.println(currentTime.Minute); display.println(currentTime.Minute);
} }
void Watchy::button1()
{
}
void Watchy::button2()
{
}
void Watchy::button3()
{
}
weatherData Watchy::getWeatherData() { weatherData Watchy::getWeatherData() {
return _getWeatherData(settings.cityID, settings.lat, settings.lon, return _getWeatherData(settings.cityID, settings.lat, settings.lon,
settings.weatherUnit, settings.weatherLang, settings.weatherURL, settings.weatherUnit, settings.weatherLang, settings.weatherURL,

View File

@ -78,6 +78,9 @@ public:
void showWatchFace(bool partialRefresh); void showWatchFace(bool partialRefresh);
virtual void drawWatchFace(); // override this method for different watch virtual void drawWatchFace(); // override this method for different watch
// faces // faces
virtual void button1(); // override these methods to handle different non-menu button presses
virtual void button2();
virtual void button3();
private: private:
void _bmaConfig(); void _bmaConfig();