mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 16:56:54 +00:00
FRITZBOX: bugfix startRadio
git-svn-id: https://svn.fhem.de/fhem/trunk@7506 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
b0c6398dc7
commit
c7bdeeaba1
@ -858,11 +858,12 @@ sub FRITZBOX_Readout_Process($$)
|
|||||||
readingsBulkUpdate( $hash, "state", $newState);
|
readingsBulkUpdate( $hash, "state", $newState);
|
||||||
FRITZBOX_Log $hash, 5, "SET state = '$newState'";
|
FRITZBOX_Log $hash, 5, "SET state = '$newState'";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
my $msg = keys( %values )." values captured in ".$values{readoutTime}." s";
|
||||||
|
readingsBulkUpdate( $hash, "lastReadout", $msg );
|
||||||
|
FRITZBOX_Log $hash, 4, $msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $msg = keys( %values )." values captured in ".$values{readoutTime}." s";
|
|
||||||
readingsBulkUpdate( $hash, "lastReadout", $msg );
|
|
||||||
FRITZBOX_Log $hash, 4, $msg;
|
|
||||||
|
|
||||||
readingsEndUpdate( $hash, 1 );
|
readingsEndUpdate( $hash, 1 );
|
||||||
}
|
}
|
||||||
@ -977,8 +978,14 @@ sub FRITZBOX_Readout_Format($$$)
|
|||||||
$readout =~ s/1/on/;
|
$readout =~ s/1/on/;
|
||||||
|
|
||||||
} elsif ($format eq "radio") {
|
} elsif ($format eq "radio") {
|
||||||
$readout = $hash->{fhem}{radio}{$readout}
|
if (defined $hash->{fhem}{radio}{$readout})
|
||||||
if defined $hash->{fhem}{radio}{$readout};
|
{
|
||||||
|
$readout = $hash->{fhem}{radio}{$readout};
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$readout .= " (unknown)";
|
||||||
|
}
|
||||||
|
|
||||||
} elsif ($format eq "ringtone") {
|
} elsif ($format eq "ringtone") {
|
||||||
$readout = $ringTone{$readout};
|
$readout = $ringTone{$readout};
|
||||||
@ -1794,9 +1801,16 @@ sub FRITZBOX_Open_Connection($)
|
|||||||
$telnet = undef;
|
$telnet = undef;
|
||||||
return $msg;
|
return $msg;
|
||||||
}
|
}
|
||||||
|
FRITZBOX_Log $hash, 5, "Change command prompt";
|
||||||
$telnet->prompt('/<xFHEMx> $/');
|
$telnet->prompt('/<xFHEMx> $/');
|
||||||
$telnet->cmd("PS1='<xFHEMx> '");
|
unless ($telnet->cmd("PS1='<xFHEMx> '"))
|
||||||
$telnet->buffer_empty;
|
{
|
||||||
|
$msg = "Telnet error: Could not change command prompt - ".$telnet->errmsg;
|
||||||
|
FRITZBOX_Log $hash, 2, $msg;
|
||||||
|
$telnet->close;
|
||||||
|
$telnet = undef;
|
||||||
|
return $msg;
|
||||||
|
}
|
||||||
|
|
||||||
return undef;
|
return undef;
|
||||||
} # end FRITZBOX_Open_Connection
|
} # end FRITZBOX_Open_Connection
|
||||||
@ -2056,13 +2070,21 @@ FRITZBOX_StartRadio($@)
|
|||||||
|
|
||||||
# Get current ringtone
|
# Get current ringtone
|
||||||
my $userNo = $intNo-609;
|
my $userNo = $intNo-609;
|
||||||
my $curRingTone = FRITZBOX_Exec( $hash, "ctlmgr_ctl r telcfg settings/Foncontrol/User".$userNo."/IntRingTone" );
|
push @cmdArray, "ctlmgr_ctl r telcfg settings/Foncontrol/User".$userNo."/IntRingTone";
|
||||||
|
push @cmdArray, "ctlmgr_ctl r telcfg settings/Foncontrol/User".$userNo."/RadioRingID";
|
||||||
|
$result = FRITZBOX_Exec( $hash, \@cmdArray );
|
||||||
|
|
||||||
|
my $curRingTone = $result->[0];
|
||||||
|
my $curRadioStation = $result->[1];
|
||||||
|
|
||||||
# Start Internet Radio and reset ring tone
|
# Start Internet Radio and reset ring tone
|
||||||
push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/IntRingTone 33";
|
push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/IntRingTone 33";
|
||||||
push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/RadioRingID $radioStation";
|
push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/RadioRingID $radioStation"
|
||||||
|
if defined $radioStation;
|
||||||
push @cmdArray, "ctlmgr_ctl w telcfg command/Dial **".$intNo;
|
push @cmdArray, "ctlmgr_ctl w telcfg command/Dial **".$intNo;
|
||||||
push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/IntRingTone $curRingTone";
|
push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/IntRingTone $curRingTone";
|
||||||
|
push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/RadioRingID $curRadioStation"
|
||||||
|
if defined $radioStation;
|
||||||
|
|
||||||
# Execute command array
|
# Execute command array
|
||||||
FRITZBOX_Exec( $hash, \@cmdArray );
|
FRITZBOX_Exec( $hash, \@cmdArray );
|
||||||
@ -2266,7 +2288,8 @@ sub FRITZBOX_fritztris($)
|
|||||||
|
|
||||||
<li><code>set <name> startRadio <internalNumber> [name or number]</code>
|
<li><code>set <name> startRadio <internalNumber> [name or number]</code>
|
||||||
<br>
|
<br>
|
||||||
Plays the internet radio on the given Fritz!Fon. Default is the current station of the phone.
|
Plays the internet radio on the given Fritz!Fon. Default is the current <u>ring tone</u> radio station of the phone.
|
||||||
|
So, <b>not</b> the station that is selected at the handset.
|
||||||
An available internet radio can be selected by its name or (reading) number.
|
An available internet radio can be selected by its name or (reading) number.
|
||||||
<br>
|
<br>
|
||||||
</li><br>
|
</li><br>
|
||||||
@ -2379,7 +2402,7 @@ sub FRITZBOX_fritztris($)
|
|||||||
<li><b>dect</b><i>1</i><b>_intRingTone</b> - Internal ring tone of the DECT device <i>1</i></li>
|
<li><b>dect</b><i>1</i><b>_intRingTone</b> - Internal ring tone of the DECT device <i>1</i></li>
|
||||||
<li><b>dect</b><i>1</i><b>_manufacturer</b> - Manufacturer of the DECT device <i>1</i></li>
|
<li><b>dect</b><i>1</i><b>_manufacturer</b> - Manufacturer of the DECT device <i>1</i></li>
|
||||||
<li><b>dect</b><i>1</i><b>_model</b> - Model of the DECT device <i>1</i></li>
|
<li><b>dect</b><i>1</i><b>_model</b> - Model of the DECT device <i>1</i></li>
|
||||||
<li><b>dect</b><i>1</i><b>_radio</b> - Current internet radio station of the DECT device <i>1</i></li>
|
<li><b>dect</b><i>1</i><b>_radio</b> - Current internet radio station ring tone of the DECT device <i>1</i></li>
|
||||||
|
|
||||||
<li><b>fon</b><i>1</i> - Internal name of the analog FON connection <i>1</i></li>
|
<li><b>fon</b><i>1</i> - Internal name of the analog FON connection <i>1</i></li>
|
||||||
<li><b>fon</b><i>1</i><b>_intern</b> - Internal number of the analog FON connection <i>1</i></li>
|
<li><b>fon</b><i>1</i><b>_intern</b> - Internal number of the analog FON connection <i>1</i></li>
|
||||||
@ -2523,7 +2546,7 @@ sub FRITZBOX_fritztris($)
|
|||||||
|
|
||||||
<li><code>set <name> startRadio <internalNumber> [Name oder Nummer]</code>
|
<li><code>set <name> startRadio <internalNumber> [Name oder Nummer]</code>
|
||||||
<br>
|
<br>
|
||||||
Startet das Internetradio auf dem angegebenen Fritz!Fon. Ein verfügbare Radiostation kann über den Namen oder die (Gerätewert)Nummer ausgewählt werden. Ansonsten wird die aktuell eingestellte genommen.
|
Startet das Internetradio auf dem angegebenen Fritz!Fon. Eine verfügbare Radiostation kann über den Namen oder die (Gerätewert)Nummer ausgewählt werden. Ansonsten wird die in der Box als Internetradio-Klingelton eingestellte Station abgespielt. (Also <b>nicht</b> die am Telefon ausgewählte.)
|
||||||
<br>
|
<br>
|
||||||
</li><br>
|
</li><br>
|
||||||
|
|
||||||
@ -2632,7 +2655,7 @@ sub FRITZBOX_fritztris($)
|
|||||||
<li><b>dect</b><i>1</i><b>_intRingTone</b> - Interner Klingelton des DECT Telefons <i>1</i></li>
|
<li><b>dect</b><i>1</i><b>_intRingTone</b> - Interner Klingelton des DECT Telefons <i>1</i></li>
|
||||||
<li><b>dect</b><i>1</i><b>_manufacturer</b> - Hersteller des DECT Telefons <i>1</i></li>
|
<li><b>dect</b><i>1</i><b>_manufacturer</b> - Hersteller des DECT Telefons <i>1</i></li>
|
||||||
<li><b>dect</b><i>1</i><b>_model</b> - Modell des DECT Telefons <i>1</i></li>
|
<li><b>dect</b><i>1</i><b>_model</b> - Modell des DECT Telefons <i>1</i></li>
|
||||||
<li><b>dect</b><i>1</i><b>_radio</b> - aktuelle Internet Radio Station des DECT Telefons <i>1</i></li>
|
<li><b>dect</b><i>1</i><b>_radio</b> - aktueller Internet-Radio-Klingelton des DECT Telefons <i>1</i></li>
|
||||||
|
|
||||||
<li><b>fon</b><i>1</i> - Name des analogen Telefonanschlusses <i>1</i> an der Fritz!Box</li>
|
<li><b>fon</b><i>1</i> - Name des analogen Telefonanschlusses <i>1</i> an der Fritz!Box</li>
|
||||||
<li><b>fon</b><i>1</i><b>_intern</b> - Interne Nummer des analogen Telefonanschlusses <i>1</i></li>
|
<li><b>fon</b><i>1</i><b>_intern</b> - Interne Nummer des analogen Telefonanschlusses <i>1</i></li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user