mirror of https://github.com/arendst/Tasmota.git
Add NeoPool feature
This commit is contained in:
parent
29deb769d4
commit
8387c14dfc
|
@ -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 |
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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",
|
||||
"","","",""
|
||||
]]
|
||||
|
||||
|
|
Loading…
Reference in New Issue