mirror of https://github.com/arendst/Tasmota.git
Fix Neopool communication error (#12813)
This commit is contained in:
parent
5edad9d3c9
commit
4f47fc8527
|
@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
|
|||
## [9.5.0.5]
|
||||
### Added
|
||||
- Inital support for Wi-Fi extender (#12784)
|
||||
- Neopool commands ``NPPHRes``, ``NPCLRes`` and ``NPIonRes`` (#12813)
|
||||
|
||||
### Fixed
|
||||
- Neopool communication error (#12813)
|
||||
|
||||
## [9.5.0.4] 20210801
|
||||
### Added
|
||||
|
|
|
@ -103,6 +103,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
|||
- Release of [Tasmota WebInstaller](https://arendst.github.io/Tasmota/)
|
||||
- Command ``SetOption127 1`` to force Wi-Fi in no-sleep mode even if ``Sleep 0`` is not enabled
|
||||
- Command ``SetSensor1..127 0|1`` to globally disable individual sensor driver
|
||||
- Neopool commands ``NPPHRes``, ``NPCLRes`` and ``NPIonRes`` [#12813](https://github.com/arendst/Tasmota/issues/12813)
|
||||
- Support for second DNS server
|
||||
- Initial support for Tasmota Mesh (TasMesh) providing node/broker communication using ESP-NOW [#11939](https://github.com/arendst/Tasmota/issues/11939)
|
||||
- Berry ESP32 partition manager [#12465](https://github.com/arendst/Tasmota/issues/12465)
|
||||
|
@ -151,3 +152,4 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
|||
- ESP32 do not use chip temperature sensor as global temperature if external temperature sensor is used [#12630](https://github.com/arendst/Tasmota/issues/12630)
|
||||
- Discovery fails when using ``%hostname%`` in a topic [#12710](https://github.com/arendst/Tasmota/issues/12710)
|
||||
- ESP32 buzzer in PWM mode exception (#12717)[#12717](https://github.com/arendst/Tasmota/issues/12717)
|
||||
- Neopool communication error [#12813](https://github.com/arendst/Tasmota/issues/12813)
|
||||
|
|
|
@ -753,8 +753,12 @@ void ResponseAppendFeatures(void)
|
|||
#if defined(USE_SPI) && defined(USE_MCP2515)
|
||||
feature8 |= 0x00000100; // xsns_87_mcp2515.ino
|
||||
#endif
|
||||
// feature8 |= 0x00000200;
|
||||
// feature8 |= 0x00000400;
|
||||
#ifdef USE_TASMESH
|
||||
feature8 |= 0x00000200; // xdrv_57_9_tasmesh.ino
|
||||
#endif
|
||||
#ifdef USE_WIFI_RANGE_EXTENDER
|
||||
feature8 |= 0x00000400; // xdrv_58_range_extender.ino
|
||||
#endif
|
||||
// feature8 |= 0x00000800;
|
||||
|
||||
// feature8 |= 0x00001000;
|
||||
|
|
|
@ -255,7 +255,7 @@ a_features = [[
|
|||
],[
|
||||
"USE_MPU_ACCEL","USE_TFMINIPLUS","USE_CSE7761","USE_BERRY",
|
||||
"USE_BM8563","USE_ENERGY_DUMMY","USE_AM2320","USE_T67XX",
|
||||
"USE_MCP2515","","","",
|
||||
"USE_MCP2515","USE_TASMESH","USE_WIFI_RANGE_EXTENDER","",
|
||||
"","","","",
|
||||
"","","","",
|
||||
"","","","",
|
||||
|
@ -288,7 +288,7 @@ else:
|
|||
obj = json.load(fp)
|
||||
|
||||
def StartDecode():
|
||||
print ("\n*** decode-status.py v20210717 by Theo Arends and Jacek Ziolkowski ***")
|
||||
print ("\n*** decode-status.py v20210802 by Theo Arends and Jacek Ziolkowski ***")
|
||||
|
||||
# print("Decoding\n{}".format(obj))
|
||||
|
||||
|
|
Loading…
Reference in New Issue