Add NeoPool feature

This commit is contained in:
Norbert Richter 2021-01-20 15:06:27 +01:00
parent 29deb769d4
commit 8387c14dfc
No known key found for this signature in database
GPG Key ID: 6628701A626FA674
3 changed files with 5 additions and 2 deletions

View File

@ -193,6 +193,7 @@
| USE_RF_SENSOR | - | - | - | - | x | - | - | AlectoV2 only | USE_RF_SENSOR | - | - | - | - | x | - | - | AlectoV2 only
| USE_HRE | - | - | - | - | x | - | - | | USE_HRE | - | - | - | - | x | - | - |
| USE_A4988_STEPPER | - | - | - | - | - | - | - | | USE_A4988_STEPPER | - | - | - | - | - | - | - |
| USE_NEOPOOL | - | - | - | - | - | - | - |
| | | | | | | | | | | | | | | | | |
| Feature or Sensor | minimal | lite | tasmota | knx | sensors | ir | display | Remarks | Feature or Sensor | minimal | lite | tasmota | knx | sensors | ir | display | Remarks
| USE_DISPLAY | - | - | - | - | - | - | x | | USE_DISPLAY | - | - | - | - | - | - | x |

View File

@ -707,7 +707,9 @@ void ResponseAppendFeatures(void)
#ifdef USE_WIEGAND #ifdef USE_WIEGAND
feature7 |= 0x04000000; // xsns_82_wiegand.ino feature7 |= 0x04000000; // xsns_82_wiegand.ino
#endif #endif
// feature7 |= 0x08000000; #ifdef USE_NEOPOOL
feature7 |= 0x08000000; // xsns_83_neopool.ino
#endif
// feature7 |= 0x10000000; // feature7 |= 0x10000000;
// feature7 |= 0x20000000; // feature7 |= 0x20000000;

View File

@ -244,7 +244,7 @@ a_features = [[
"USE_SHELLY_DIMMER","USE_RC522","USE_FTC532","USE_DISPLAY_EPAPER_42", "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_ILI9488","USE_DISPLAY_SSD1351","USE_DISPLAY_RA8876","USE_DISPLAY_ST7789",
"USE_DISPLAY_SSD1331","USE_UFILESYS","USE_TIMEPROP","USE_PID", "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",
"","","","" "","","",""
]] ]]