Skip to content

Commit

Permalink
Make settable
Browse files Browse the repository at this point in the history
  • Loading branch information
steadramon committed Apr 7, 2024
1 parent 0ac87be commit 064bca6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ESPGeiger/src/GeigerInput/GeigerInput.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ class GeigerInput {
virtual void secondTicker();
virtual int collect();
virtual void begin();
void set_debounce(int debounce) {
_debounce = microsecondsToClockCycles(debounce);
}
void set_rx_pin(int pin) {
_rx_pin = pin;
};
Expand Down

0 comments on commit 064bca6

Please sign in to comment.