mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-09 20:57:11 +00:00
70_ONKYO_AVR: fixed command for previous title (thx Fusssel)
git-svn-id: https://svn.fhem.de/fhem/trunk@20975 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
4d25d744b1
commit
d0b17fb944
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# 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.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- bugfix: 70_ONKYO_AVR: fixed command for previous title (thx Fusssel)
|
||||||
- feature: 70_ONKYO_AVR: introduced 'set rawCommand'
|
- feature: 70_ONKYO_AVR: introduced 'set rawCommand'
|
||||||
- change: 98_todoist: removed Attribute "sortTasks" / better commandref
|
- change: 98_todoist: removed Attribute "sortTasks" / better commandref
|
||||||
better move in widget (not delete and add)
|
better move in widget (not delete and add)
|
||||||
|
@ -949,7 +949,7 @@ sub ONKYO_AVR_Set($$$) {
|
|||||||
ONKYO_AVR_SendCommand( $hash, "net-usb", lc( @$a[2] ) );
|
ONKYO_AVR_SendCommand( $hash, "net-usb", lc( @$a[2] ) );
|
||||||
}
|
}
|
||||||
elsif ( lc( @$a[2] ) eq "prev" ) {
|
elsif ( lc( @$a[2] ) eq "prev" ) {
|
||||||
$return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trdown" );
|
$return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trdn" );
|
||||||
}
|
}
|
||||||
elsif ( lc( @$a[2] ) eq "next" ) {
|
elsif ( lc( @$a[2] ) eq "next" ) {
|
||||||
$return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trup" );
|
$return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trup" );
|
||||||
@ -1041,7 +1041,7 @@ sub ONKYO_AVR_Set($$$) {
|
|||||||
"Device power is turned off, this function is unavailable at that stage.";
|
"Device power is turned off, this function is unavailable at that stage.";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trdown" );
|
$return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trdn" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user