-
Notifications
You must be signed in to change notification settings - Fork 344
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add basic button support #164
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -114,6 +114,7 @@ void Watchy::handleButtonPress() { | |||||||||||||||||||||||||||
} else if (guiState == FW_UPDATE_STATE) { | ||||||||||||||||||||||||||||
showMenu(menuIndex, false); // exit to menu if already in app | ||||||||||||||||||||||||||||
} else if (guiState == WATCHFACE_STATE) { | ||||||||||||||||||||||||||||
button1(); | ||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
@@ -126,6 +127,7 @@ void Watchy::handleButtonPress() { | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
showMenu(menuIndex, true); | ||||||||||||||||||||||||||||
} else if (guiState == WATCHFACE_STATE) { | ||||||||||||||||||||||||||||
button2(); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
@@ -138,6 +140,7 @@ void Watchy::handleButtonPress() { | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
showMenu(menuIndex, true); | ||||||||||||||||||||||||||||
} else if (guiState == WATCHFACE_STATE) { | ||||||||||||||||||||||||||||
button3(); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
@@ -579,6 +582,17 @@ void Watchy::drawWatchFace() { | |||||||||||||||||||||||||||
display.println(currentTime.Minute); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
void Watchy::button1() | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
void Watchy::button2() | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
void Watchy::button3() | ||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
Comment on lines
+585
to
+595
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will help keep the style consistent:
Suggested change
|
||||||||||||||||||||||||||||
weatherData Watchy::getWeatherData() { | ||||||||||||||||||||||||||||
return getWeatherData(settings.cityID, settings.weatherUnit, | ||||||||||||||||||||||||||||
settings.weatherLang, settings.weatherURL, | ||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -73,6 +73,9 @@ class Watchy { | |||||||||||||
void showWatchFace(bool partialRefresh); | ||||||||||||||
virtual void drawWatchFace(); // override this method for different watch | ||||||||||||||
// faces | ||||||||||||||
virtual void button1(); // override these methods to handle different non-menu button presses | ||||||||||||||
virtual void button2(); | ||||||||||||||
virtual void button3(); | ||||||||||||||
Comment on lines
+76
to
+78
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
|
||||||||||||||
private: | ||||||||||||||
void _bmaConfig(); | ||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about:
This lines up with the function naming pattern that already exists,
handleButtonPress
.Also, this is SW2 on the PCB, and here is SW2 documented in the Getting Started guide: https://watchy.sqfmi.com/docs/getting-started/