From 8387c14dfc89a83944d10cf8b9c23a8cc033ec42 Mon Sep 17 00:00:00 2001 From: Norbert Richter Date: Wed, 20 Jan 2021 15:06:27 +0100 Subject: [PATCH] Add NeoPool feature --- BUILDS.md | 1 + tasmota/support_features.ino | 4 +++- tools/decode-status.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/BUILDS.md b/BUILDS.md index c099a443b..e2d86b053 100644 --- a/BUILDS.md +++ b/BUILDS.md @@ -193,6 +193,7 @@ | USE_RF_SENSOR | - | - | - | - | x | - | - | AlectoV2 only | USE_HRE | - | - | - | - | x | - | - | | USE_A4988_STEPPER | - | - | - | - | - | - | - | +| USE_NEOPOOL | - | - | - | - | - | - | - | | | | | | | | | | | Feature or Sensor | minimal | lite | tasmota | knx | sensors | ir | display | Remarks | USE_DISPLAY | - | - | - | - | - | - | x | diff --git a/tasmota/support_features.ino b/tasmota/support_features.ino index 49c158653..a5134c1c1 100644 --- a/tasmota/support_features.ino +++ b/tasmota/support_features.ino @@ -707,7 +707,9 @@ void ResponseAppendFeatures(void) #ifdef USE_WIEGAND feature7 |= 0x04000000; // xsns_82_wiegand.ino #endif -// feature7 |= 0x08000000; +#ifdef USE_NEOPOOL + feature7 |= 0x08000000; // xsns_83_neopool.ino +#endif // feature7 |= 0x10000000; // feature7 |= 0x20000000; diff --git a/tools/decode-status.py b/tools/decode-status.py index f6b6f923d..bb5b4e6c3 100755 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -244,7 +244,7 @@ a_features = [[ "USE_SHELLY_DIMMER","USE_RC522","USE_FTC532","USE_DISPLAY_EPAPER_42", "USE_DISPLAY_ILI9488","USE_DISPLAY_SSD1351","USE_DISPLAY_RA8876","USE_DISPLAY_ST7789", "USE_DISPLAY_SSD1331","USE_UFILESYS","USE_TIMEPROP","USE_PID", - "USE_BS814A2","USE_SEESAW_SOIL","USE_WIEGAND","", + "USE_BS814A2","USE_SEESAW_SOIL","USE_WIEGAND","USE_NEOPOOL", "","","","" ]]