We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 499b9a5 commit cdc6f17Copy full SHA for cdc6f17
SSD1306Ui.cpp
@@ -89,12 +89,8 @@ void SSD1306Ui::previousFrame() {
89
90
91
// -/----- State information -----\-
92
-FrameState SSD1306Ui::getFrameState(){
93
- return this->state.frameState;
94
-}
95
-
96
-int SSD1306Ui::getCurrentFrame(){
97
- return this->state.currentFrame;
+SSD1306UiState SSD1306Ui::getUiState(){
+ return this->state;
98
}
99
100
SSD1306Ui.h
@@ -199,7 +199,7 @@ class SSD1306Ui {
199
void previousFrame();
200
201
// State Info
202
- FrameState getUiState();
+ SSD1306UiState getUiState();
203
204
int update();
205
};
0 commit comments