Berry virtual Energy driver (#22134)

This commit is contained in:
s-hadinger 2024-09-12 19:38:04 +02:00 committed by GitHub
parent 7b8308c36a
commit 6e4517de02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 94 additions and 4 deletions

View File

@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
- Matter support for Zigbee Occupancy and Light 0/1/2 (OnOff / Dimmer / White Color Temperature) (#22110) - Matter support for Zigbee Occupancy and Light 0/1/2 (OnOff / Dimmer / White Color Temperature) (#22110)
- KNX additional KnxTx functions and define KNX_USE_DPT9 (#22071) - KNX additional KnxTx functions and define KNX_USE_DPT9 (#22071)
- Support for I2C M5Unit (Mini)Scales using HX711 driver - Support for I2C M5Unit (Mini)Scales using HX711 driver
- Berry virtual Energy driver
### Breaking Changed ### Breaking Changed

View File

@ -14,6 +14,7 @@
extern struct ENERGY Energy; extern struct ENERGY Energy;
extern int module_energy_update_total(bvm *vm); extern int module_energy_update_total(bvm *vm);
extern int module_energy_driver_enabled(bvm *vm);
#include "solidify/solidified_energy.h" #include "solidify/solidified_energy.h"
#include "be_fixed_energy.h" #include "be_fixed_energy.h"
@ -37,6 +38,7 @@ module energy (scope: global) {
tomap, closure(module_energy_tomap_closure) tomap, closure(module_energy_tomap_closure)
update_total, func(module_energy_update_total) update_total, func(module_energy_update_total)
driver_enabled, func(module_energy_driver_enabled) // is the Berry virtual driver active?
} }
@const_object_info_end */ @const_object_info_end */

View File

@ -233,7 +233,7 @@ enum ProgramSelectablePins {
GPIO_USER, // User configurable needs to be 2047 GPIO_USER, // User configurable needs to be 2047
GPIO_MAX }; GPIO_MAX };
#define MAX_OPTIONS_A 8 // Increase if more bits are used from GpioOptionABits #define MAX_OPTIONS_A 9 // Increase if more bits are used from GpioOptionABits
typedef union { // Restricted by MISRA-C Rule 18.4 but so useful... typedef union { // Restricted by MISRA-C Rule 18.4 but so useful...
uint32_t data; // Allow bit manipulation using SetOption uint32_t data; // Allow bit manipulation using SetOption
@ -246,7 +246,7 @@ typedef union { // Restricted by MISRA-C Rule 18.4 bu
uint32_t linkind_support : 1; // bit 5 (v10.1.0.4) - Option_A6 - (Light) LinkInd support uint32_t linkind_support : 1; // bit 5 (v10.1.0.4) - Option_A6 - (Light) LinkInd support
uint32_t shelly_pro : 1; // bit 6 (v12.2.0.1) - Option_A7 - (Device) Shelly Pro uint32_t shelly_pro : 1; // bit 6 (v12.2.0.1) - Option_A7 - (Device) Shelly Pro
uint32_t ifan04_h : 1; // bit 7 (v14.1.0.4) - Option_A8 - (Device) Sonoff ifan04-H uint32_t ifan04_h : 1; // bit 7 (v14.1.0.4) - Option_A8 - (Device) Sonoff ifan04-H
uint32_t spare08 : 1; // bit 8 uint32_t berry_energy : 1; // bit 8 (v14.2.0.4) - Option_A9 - (Energy) Enable Berry energy driver
uint32_t spare09 : 1; // bit 9 uint32_t spare09 : 1; // bit 9
uint32_t spare10 : 1; // bit 10 uint32_t spare10 : 1; // bit 10
uint32_t spare11 : 1; // bit 11 uint32_t spare11 : 1; // bit 11

View File

@ -38,6 +38,12 @@ extern "C" {
be_return_nil(vm); be_return_nil(vm);
} }
extern int module_energy_driver_enabled(bvm *vm);
int module_energy_driver_enabled(bvm *vm) {
be_pushbool(vm, 28 == TasmotaGlobal.energy_driver);
be_return(vm);
}
#pragma GCC diagnostic push #pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Winvalid-offsetof" // avoid warnings since we're using offsetof() in a risky way #pragma GCC diagnostic ignored "-Winvalid-offsetof" // avoid warnings since we're using offsetof() in a risky way

View File

@ -33,11 +33,12 @@ extern "C" {
extern const be_ctypes_structure_t be_tasmota_global_struct = { extern const be_ctypes_structure_t be_tasmota_global_struct = {
sizeof(TasmotaGlobal), /* size in bytes */ sizeof(TasmotaGlobal), /* size in bytes */
9, /* number of elements */ 10, /* number of elements */
nullptr, nullptr,
(const be_ctypes_structure_item_t[9]) { (const be_ctypes_structure_item_t[10]) {
// Warning: fields below need to be in alphabetical order // Warning: fields below need to be in alphabetical order
{ "devices_present", offsetof(TasmotaGlobal_t, devices_present), 0, 0, ctypes_u8, 0 }, { "devices_present", offsetof(TasmotaGlobal_t, devices_present), 0, 0, ctypes_u8, 0 },
{ "energy_driver", offsetof(TasmotaGlobal_t, energy_driver), 0, 0, ctypes_u8, 0 },
{ "fast_loop_enabled", offsetof(TasmotaGlobal_t, berry_fast_loop_enabled), 0, 0, ctypes_u8, 0 }, { "fast_loop_enabled", offsetof(TasmotaGlobal_t, berry_fast_loop_enabled), 0, 0, ctypes_u8, 0 },
{ "masterlog_level", offsetof(TasmotaGlobal_t, masterlog_level), 0, 0, ctypes_u8, 0 }, { "masterlog_level", offsetof(TasmotaGlobal_t, masterlog_level), 0, 0, ctypes_u8, 0 },
{ "maxlog_level", offsetof(TasmotaGlobal_t, maxlog_level), 0, 0, ctypes_u8, 0 }, { "maxlog_level", offsetof(TasmotaGlobal_t, maxlog_level), 0, 0, ctypes_u8, 0 },

View File

@ -0,0 +1,80 @@
/*
xnrg_28_berry.ino - Berry empty energy sensor which implementation is delegated to Berry
Copyright (C) 2021 Theo Arends
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef ESP32
#ifdef USE_ENERGY_SENSOR
#ifdef USE_BERRY
/*********************************************************************************************\
* Provides the stub for a pure Berry energy monitoring driver
*
* Enable by selecting any GPIO as Option A9
\*********************************************************************************************/
#define XNRG_28 28
#define NRG_BERRY_U_COMMON true // Phase voltage = false, Common voltage = true
#define NRG_BERRY_F_COMMON true // Phase frequency = false, Common frequency = true
#define NRG_BERRY_DC false // AC = false, DC = true;
#define NRG_BERRY_OVERTEMP true // Use global temperature for overtemp detection
/********************************************************************************************/
void NrgBerryEverySecond(void) {
if (TasmotaGlobal.gpio_optiona.berry_energy) { // active only if OPTION_A 9
// the only required action every second is to compute the power delta for the last second from `active_power`
for (uint32_t channel = 0; channel < Energy->phase_count; channel++) {
Energy->kWhtoday_delta[channel] += Energy->active_power[channel] * 1000 / 36;
Energy->data_valid[channel] = 0; // mark data as valid to reset the energy watchdog
}
EnergyUpdateToday(); // centrak management of power counters
}
}
void NrgBerryDrvInit(void) {
if (TasmotaGlobal.gpio_optiona.berry_energy) { // active only if OPTION_A 9
// set some default parameters
Energy->voltage_common = NRG_BERRY_U_COMMON; // Phase voltage = false, Common voltage = true
Energy->frequency_common = NRG_BERRY_F_COMMON; // Phase frequency = false, Common frequency = true
Energy->type_dc = NRG_BERRY_DC; // AC = false, DC = true;
Energy->use_overtemp = NRG_BERRY_OVERTEMP; // Use global temperature for overtemp detection
TasmotaGlobal.energy_driver = XNRG_28; // if OPTION_A 9 is set, mark this driver as the active driver, so it can be tested in Berry
}
}
/*********************************************************************************************\
* Interface
\*********************************************************************************************/
bool Xnrg28(uint32_t function) {
switch (function) {
case FUNC_ENERGY_EVERY_SECOND:
NrgBerryEverySecond();
break;
case FUNC_PRE_INIT:
NrgBerryDrvInit();
break;
}
return false;
}
#endif // USE_BERRY
#endif // USE_ENERGY_SENSOR
#endif // ESP32