Skip to content

Commit

Permalink
dont turn off at start
Browse files Browse the repository at this point in the history
  • Loading branch information
steadramon committed Oct 15, 2023
1 parent 2a19419 commit 22a918a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ESPGeiger/src/Status.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ struct Status {
bool button_pushed = false;
#endif
#if LED_SEND_RECEIVE_ON == LOW
JLed led = JLed(LED_SEND_RECEIVE).LowActive().Stop();
JLed led = JLed(LED_SEND_RECEIVE).LowActive();
#else
JLed led = JLed(LED_SEND_RECEIVE).Stop();
JLed led = JLed(LED_SEND_RECEIVE);
#endif
#if defined(SSD1306_DISPLAY)
int oled_page = 1;
Expand Down

0 comments on commit 22a918a

Please sign in to comment.