diff --git a/fhem/FHEM/33_readingsGroup.pm b/fhem/FHEM/33_readingsGroup.pm index f47704b27..58f777fe5 100644 --- a/fhem/FHEM/33_readingsGroup.pm +++ b/fhem/FHEM/33_readingsGroup.pm @@ -508,8 +508,8 @@ readingsGroup_Get($@)
  • valueFormat
    Specify an sprintf style format string used to display the reading values. Can be given as a string, a perl expression returninga hash or a perl expression returning a string, e.g.:
    - attr temperatures valueFormat %.1f °C
  • - attr temperatures valueFormat { temperature => "%.1f °C", humidity => "%.1f %" } + attr temperatures valueFormat %.1f °C
    + attr temperatures valueFormat { temperature => "%.1f °C", humidity => "%.1f %" }
    attr temperatures valueFormat { ($READING eq 'temperature')?"%.1f °C":undef }