mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
70_BRAVIA.pm: add set enable / disable
git-svn-id: https://svn.fhem.de/fhem/trunk@29329 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
98da47c065
commit
29c07aaa3a
@ -1,5 +1,6 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it
|
||||
- feature: 70_BRAVIA: add set enable / disable
|
||||
- bugfix: 36_Shelly: bad firmware identification
|
||||
- bugfix: 72_XiaomiDevice: requested fix for crash
|
||||
- change: 76_SolarForecast: attr setupInverterDevXX: new key 'limit',
|
||||
|
@ -183,7 +183,7 @@ sub GetStatus {
|
||||
RemoveInternalTimer($hash);
|
||||
InternalTimer( gettimeofday() + $interval, \&GetStatus, $hash, 0 );
|
||||
|
||||
return if ( AttrVal($name, "disable", 0) == 1 );
|
||||
return if ( ReadingsVal($name, "mode", "") eq "disabled" or AttrVal($name, "disable", 0) == 1 );
|
||||
|
||||
# check device availability
|
||||
if (!$update) {
|
||||
@ -235,6 +235,7 @@ sub Set {
|
||||
my $inputs = "";
|
||||
my $apps = "";
|
||||
my $mutes = "toggle";
|
||||
my $mode = ReadingsVal($name, "mode", "enabled");
|
||||
|
||||
if ( ReadingsVal($name, "input", "") ne "-" ) {
|
||||
$hash->{helper}{lastInput} = ReadingsVal($name, "input", "");
|
||||
@ -309,6 +310,8 @@ sub Set {
|
||||
$usage .= " openUrl application:" . $apps if ( $apps ne "" );
|
||||
$usage .= " text" if (ReadingsVal($name, "requestFormat", "") eq "json");
|
||||
$usage .= " requestReboot:noArg" if (ReadingsVal($name, "requestFormat", "") eq "json");
|
||||
$usage .= " enable:noArg " if ( $mode ne "enabled" );
|
||||
$usage .= " disable:noArg " if ( $mode eq "enabled" );
|
||||
|
||||
my $cmd = '';
|
||||
|
||||
@ -760,6 +763,15 @@ sub Set {
|
||||
SendCommand( $hash, "text", $text );
|
||||
}
|
||||
|
||||
# mode: enable / disable
|
||||
elsif ( $a[1] eq "enable" or $a[1] eq "disable" ) {
|
||||
Log3($name, 2, "BRAVIA set $name " . $a[1]);
|
||||
if ( AttrVal($name, "disable", "") ) {
|
||||
return ("device is deactivated by disable attribute, delete disable attribute first");
|
||||
}
|
||||
readingsSingleUpdate( $hash, 'mode', $a[1] eq "enable" ? "enabled" : "disabled", 1 );
|
||||
}
|
||||
|
||||
# return usage hint
|
||||
else {
|
||||
return $usage;
|
||||
@ -2330,6 +2342,10 @@ sub GetNormalizedName {
|
||||
Switches a channel back.</li>
|
||||
<li><a name="channelUp"></a><i>channelUp</i><br>
|
||||
Switches a channel forward.</li>
|
||||
<li><a name="enable"></a><i>enable</i><br>
|
||||
Enables the internal task to pull the status and other information from the TV.</li>
|
||||
<li><a name="disable"></a><i>disable</i><br>
|
||||
Disables the internal task to pull the status and other information from the TV.</li>
|
||||
<li><a name="input"></a><i>input</i><br>
|
||||
List of input channels.
|
||||
Imputs are available with models from 2013 and newer.</li>
|
||||
@ -2452,6 +2468,10 @@ sub GetNormalizedName {
|
||||
Einen Kanal zurück schalten.</li>
|
||||
<li><a name="channelUp"></a><i>channelUp</i><br>
|
||||
Einen Kanal weiter schalten.</li>
|
||||
<li><a name="enable"></a><i>enable</i><br>
|
||||
Aktiviert den internen Task zum regelmäßigen Abrufen des Status des TV und weiterer Informationen.</li>
|
||||
<li><a name="disable"></a><i>disable</i><br>
|
||||
Unterbricht den internen Task zum regelmäßigen Abrufen des Status des TV und weiterer Informationen.</li>
|
||||
<li><a name="input"></a><i>input</i><br>
|
||||
Liste der Eingänge.
|
||||
Eingänge sind ab Modelljahr 2013 verfügbar.</li>
|
||||
|
Loading…
Reference in New Issue
Block a user