diff --git a/fhem/CHANGED b/fhem/CHANGED
index fe3b903eb..4e8944e69 100644
--- a/fhem/CHANGED
+++ b/fhem/CHANGED
@@ -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.
+ - bugfix: 71_YAMAHA_AVR: use correct dsp command for RX-V2065 model
- change: 57_Calendar: treatment of cutoffOlderThan amended for series
end dates without time specification
- change: 59_WUup: code cleanup
diff --git a/fhem/FHEM/71_YAMAHA_AVR.pm b/fhem/FHEM/71_YAMAHA_AVR.pm
index cc9c76bc2..a4fbbbe2b 100755
--- a/fhem/FHEM/71_YAMAHA_AVR.pm
+++ b/fhem/FHEM/71_YAMAHA_AVR.pm
@@ -625,7 +625,14 @@ YAMAHA_AVR_Set($@)
{
if(YAMAHA_AVR_isModel_DSP($hash))
{
- YAMAHA_AVR_SendCommand($hash, "<$zone>$command$zone>", $what, $a[2]);
+ if($hash->{MODEL} eq "RX-V2065")
+ {
+ YAMAHA_AVR_SendCommand($hash, "<$zone>$command$zone>", $what, $a[2]);
+ }
+ else
+ {
+ YAMAHA_AVR_SendCommand($hash, "<$zone>$command$zone>", $what, $a[2]);
+ }
}
else
{