Skip to content

Commit

Permalink
Reflect CPM better
Browse files Browse the repository at this point in the history
  • Loading branch information
steadramon committed Mar 4, 2024
1 parent 0b02d89 commit 3d97504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ESPGeiger/src/OLEDDisplay/OLEDDisplay.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class SSD1306Display : public SSD1306Wire{
setColor(BLACK);
fillRect(45, 0, 72, 32);
setColor(WHITE);
drawString(45,0, String(gcounter.get_cpm()).c_str() );
drawString(45,0, String((int)gcounter.get_cpmf()).c_str() );
setFont(DialogInput_plain_12);
drawString(45,20, String(gcounter.get_usv()).c_str() );
if (gcounter.cpm_history.capacity != gcounter.cpm_history.size()) {
Expand Down

0 comments on commit 3d97504

Please sign in to comment.