From bf644d8052f981178957b175f5dfda51cfa99e7f Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Thu, 13 Oct 2022 14:32:35 +0200 Subject: [PATCH] Add Export Active report to Shelly EM (#16794) --- tasmota/tasmota_xnrg_energy/xnrg_07_ade7953.ino | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasmota/tasmota_xnrg_energy/xnrg_07_ade7953.ino b/tasmota/tasmota_xnrg_energy/xnrg_07_ade7953.ino index 627bd0b9a..3faa57adf 100644 --- a/tasmota/tasmota_xnrg_energy/xnrg_07_ade7953.ino +++ b/tasmota/tasmota_xnrg_energy/xnrg_07_ade7953.ino @@ -584,6 +584,9 @@ void Ade7953DrvInit(void) { Energy.voltage_common = true; // Use common voltage Energy.frequency_common = true; // Use common frequency Energy.use_overtemp = true; // Use global temperature for overtemp detection + if (ADE7953_SHELLY_EM == Ade7953.model) { + Energy.local_energy_active_export = true; + } TasmotaGlobal.energy_driver = XNRG_07; } }