mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-04 14:47:37 +03:00
## Summary * Show battery percentage on home screen * Moved battery rendering logic into shared ScreenComponents class * As discussed https://github.com/daveallie/crosspoint-reader/discussions/155
9 lines
146 B
C++
9 lines
146 B
C++
#pragma once
|
|
|
|
class GfxRenderer;
|
|
|
|
class ScreenComponents {
|
|
public:
|
|
static void drawBattery(const GfxRenderer& renderer, int left, int top);
|
|
};
|