2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-07 19:04:20 +00:00

70_PylonLowVoltage: fix warning

git-svn-id: https://svn.fhem.de/fhem/trunk@28070 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2023-10-20 08:57:23 +00:00
parent c4fa1de839
commit 0d1e585876

View File

@ -1288,7 +1288,7 @@ sub pseudoHexToText {
my $string = shift; my $string = shift;
my $charcode; my $charcode;
my $text; my $text = '';
for (my $i = 0; $i < length($string); $i = $i + 2) { for (my $i = 0; $i < length($string); $i = $i + 2) {
$charcode = hex substr ($string, $i, 2); # charcode = aquivalente Dezimalzahl der angegebenen Hexadezimalzahl $charcode = hex substr ($string, $i, 2); # charcode = aquivalente Dezimalzahl der angegebenen Hexadezimalzahl