Skip to content

Commit

Permalink
Ability to block txpin
Browse files Browse the repository at this point in the history
  • Loading branch information
steadramon committed Mar 4, 2024
1 parent e9707f7 commit e532af0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ESPGeiger/src/ConfigManager/ConfigManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ WiFiManagerParameter ESPGeigerParams[] =
WiFiManagerParameter("geigerRX", "RX Pin", String(GEIGER_RXPIN).c_str(), 12),
#endif
#if GEIGER_TXPIN != -1
#ifndef TXPIN_BLOCKED
WiFiManagerParameter("geigerTX", "TX Pin", String(GEIGER_TXPIN).c_str(), 12),
#endif
#endif
#if defined(SSD1306_DISPLAY) && defined(GEIGER_PUSHBUTTON)
WiFiManagerParameter("dispTimeout", "Display timeout (s)", "120", 10),
#endif
Expand Down Expand Up @@ -266,8 +268,6 @@ void ConfigManager::handleJsonReturn()

void ConfigManager::handleClicksReturn()
{
//https://www.madomotic.fr/index.php/2019/11/03/kit-diy-rac2-radiation-counter-v2-ou-geiger/

DynamicJsonDocument json(512);

json.clear();
Expand Down

0 comments on commit e532af0

Please sign in to comment.