Skip to content

Commit

Permalink
Fix Shelly 2.5 higher temperature
Browse files Browse the repository at this point in the history
Fix Shelly 2.5 higher temperature regression from 8.2.0.1 (#7991)
  • Loading branch information
arendst committed Sep 24, 2020
1 parent beaf5af commit 2b16091
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Expand Up @@ -61,6 +61,9 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota
- Fix crash in ``ZbRestore``
- Fix reset BMP sensors when executing command ``SaveData`` and define USE_DEEPSLEEP enabled (#9300)
- Fix ``status 0`` message when using define USE_MQTT_TLS due to small log buffer (#9305)
- Fix ``status 13`` exception 9 when more than one shutter is configured
- Fix ``status 13`` json message
- Fix Shelly 2.5 higher temperature regression from 8.2.0.1 (#7991)
- Change replace ArduinoJson with JSMN for JSON parsing
- Add command ``SetOption110 1`` to disable Zigbee auto-config when pairing new devices
- Add command ``SetOption111 1`` to enable frequency output for buzzer GPIO (#8994)
Expand Down
3 changes: 3 additions & 0 deletions tasmota/CHANGELOG.md
Expand Up @@ -8,6 +8,9 @@
- Fix crash in ``ZbRestore``
- Fix reset BMP sensors when executing command ``SaveData`` and define USE_DEEPSLEEP enabled (#9300)
- Fix ``status 0`` message when using define USE_MQTT_TLS due to small log buffer (#9305)
- Fix ``status 13`` exception 9 when more than one shutter is configured
- Fix ``status 13`` json message
- Fix Shelly 2.5 higher temperature regression from 8.2.0.1 (#7991)
- Change replace ArduinoJson with JSMN for JSON parsing
- Add command ``SetOption110 1`` to disable Zigbee auto-config when pairing new devices
- Add command ``SetOption111 1`` to enable frequency output for buzzer GPIO (#8994)
Expand Down
3 changes: 2 additions & 1 deletion tasmota/xnrg_07_ade7953.ino
Expand Up @@ -199,7 +199,8 @@ void Ade7953EnergyEverySecond(void)

void Ade7953DrvInit(void)
{
if (PinUsed(GPIO_ADE7953_IRQ)) { // Irq on GPIO16 is not supported...
if (PinUsed(GPIO_ADE7953_IRQ)) { // Irq on GPIO16 is not supported...
pinMode(Pin(GPIO_ADE7953_IRQ), INPUT); // Related to resetPins() - Must be set to input
delay(100); // Need 100mS to init ADE7953
if (I2cSetDevice(ADE7953_ADDR)) {
if (HLW_PREF_PULSE == Settings.energy_power_calibration) {
Expand Down

0 comments on commit 2b16091

Please sign in to comment.