2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 12:18:46 +00:00

76_SMAPortal: contrib 1.5.2

git-svn-id: https://svn.fhem.de/fhem/trunk@19033 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2019-03-25 22:41:54 +00:00
parent b1b35aa088
commit 7b3fb3a2b6

View File

@ -1053,6 +1053,7 @@ sub extractConsumerData($$) {
$key =~ /^(\d+)_.*$/;
my $lfn = $1;
my $cn = $consumers{"${lfn}_ConsumerName"}; # Verbrauchername
$cn = substUmlauts($cn); # evtl. Umlaute im Verbrauchernamen ersetzen
my $pos = $consumers{"${lfn}_PlannedOpTimeStart"}; # geplanter Start
my $poe = $consumers{"${lfn}_PlannedOpTimeEnd"}; # geplantes Ende
my $rb = "L3_${cn}_PlannedOpTimeBegin";
@ -1255,6 +1256,23 @@ sub UTC2LocalString($$) {
}
}
###############################################################################
# Umlaute für Readingerstellung ersetzen
###############################################################################
sub substUmlauts ($) {
my ($txt) = @_;
$txt =~ s/ß/ss/g;
$txt =~ s/ä/ae/g;
$txt =~ s/ö/oe/g;
$txt =~ s/ü/ue/g;
$txt =~ s/Ä/Ae/g;
$txt =~ s/Ö/Oe/g;
$txt =~ s/Ü/Ue/g;
return($txt);
}
1;
=pod