diff --git a/FHEM/73_ElectricityCalculator.pm b/FHEM/73_ElectricityCalculator.pm index 3387bb1f0..63f484fed 100644 --- a/FHEM/73_ElectricityCalculator.pm +++ b/FHEM/73_ElectricityCalculator.pm @@ -61,6 +61,7 @@ sub ElectricityCalculator_Initialize($) $hash->{NotifyOrderPrefix} = "10-"; # Want to be called before the rest $hash->{AttrList} = "disable:0,1 " . + "header " . "ElectricityCounterOffset " . "ElectricityKwhPerCounts " . "BasicPricePerAnnum " . @@ -69,7 +70,8 @@ sub ElectricityCalculator_Initialize($) "MonthOfAnnualReading " . "ReadingDestination:CalculatorDevice,CounterDevice " . "SiPrefixPower:W,kW,MW,GW " . - "Currency:€,£,$ "; + "Currency:€,£,$ " . + $readingFnAttributes; } ####END####### Initialize module ###############################################################################END##### @@ -1054,6 +1056,19 @@ sub ElectricityCalculator_Notify($$) + +
@@ -1601,6 +1616,19 @@ sub ElectricityCalculator_Notify($$)
+ +