diff --git a/fhem/FHEM/31_LightScene.pm b/fhem/FHEM/31_LightScene.pm
index 4e210738e..0207a969f 100644
--- a/fhem/FHEM/31_LightScene.pm
+++ b/fhem/FHEM/31_LightScene.pm
@@ -175,7 +175,7 @@ LightScene_2html($)
$ret .= "";
$ret .= "";
- $ret .= "";
+ $ret .= "
";
return $ret;
}
@@ -908,9 +908,9 @@ LightScene_editTable($) {
in addition to reading names the list can also contain expressions of the form abc -> xyz
or get cba -> set uvw to map reading abc to set xyz or get cba to set uvw. the list can be given as a
string or as a perl expression enclosed in {} that returns this string.
- attr myReceiver lightSceneParamsToSave volume,channel
+ attr myReceiver lightSceneParamsToSave volume,channel
attr myHueDevice lightSceneParamsToSave {(Value($DEVICE) eq "off")?"state":"bri : xy"}
- attr myDimmer lightSceneParamsToSave state@{if($value=~m/(\d+)/){$1}else{$value}}
+ attr myDimmer lightSceneParamsToSave state@{if($value=~m/(\d+)/){$1}else{$value}}
define heizung readingsGroup t1:temperature t2:temperature t3:temperature
attr heizung notime 1
- attr heizung mapping {'t1.temperature' => 'Vorlauf', 't2.temperature' => 'Rücklauf', 't3.temperature' => 'Zirkulation'}
+ attr heizung mapping {'t1.temperature' => 'Vorlauf', 't2.temperature' => 'Rücklauf', 't3.temperature' => 'Zirkulation'}
attr heizung style style="font-size:20px"
define systemStatus readingsGroup sysstat
@@ -1048,8 +1048,8 @@ readingsGroup_Attr($$$)
Specify an sprintf style format string used to display the reading values. If the format string is undef
this reading will be skipped. Can be given as a string, a perl expression returning a 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 }attr devices valueIcon $VALUE
- attr devices valueIcon {state => '%VALUE'}
+ attr devices valueIcon $VALUEattr devices valueIcon {state => '%VALUE'}attr devices valueIcon {state => '%devStateIcon'}
attr rgMediaPlayer valueIcon { "playStatus.paused" => "rc_PLAY", "playStatus.playing" => "rc_PAUSE" }attr history valueFormat %.1f °C
- attr history valueFormat { temperature => "%.1f °C", humidity => "%.1f %" }
+ attr history valueFormat %.1f °Cattr history valueFormat { temperature => "%.1f °C", humidity => "%.1f %" }attr history valueFormat { ($READING eq 'temperature')?"%.1f °C":undef }