Skip to content

Commit

Permalink
Add OLED driver function to determine if the screen is currently on (q…
Browse files Browse the repository at this point in the history
  • Loading branch information
333fred authored and drashna committed Nov 24, 2020
1 parent 7c39643 commit d143e0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/oled/oled_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,8 @@ bool oled_off(void) {
return !oled_active;
}

bool is_oled_on(void) { return oled_active; }

// Set the specific 8 lines rows of the screen to scroll.
// 0 is the default for start, and 7 for end, which is the entire
// height of the screen. For 128x32 screens, rows 4-7 are not used.
Expand Down
4 changes: 4 additions & 0 deletions drivers/oled/oled_driver.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,10 @@ bool oled_on(void);
// Returns true if the screen was off or turns off
bool oled_off(void);

// Returns true if the oled is currently on, false if it is
// not
bool is_oled_on(void);

// Basically it's oled_render, but with timeout management and oled_task_user calling!
void oled_task(void);

Expand Down

0 comments on commit d143e0c

Please sign in to comment.