mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-09 20:57:11 +00:00
YAMAHA_AVR: use the correct DSP command to set DSP modes on RX-V2065
git-svn-id: https://svn.fhem.de/fhem/trunk@21538 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
7318e4f970
commit
6511dfccf3
@ -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
|
||||
|
@ -625,7 +625,14 @@ YAMAHA_AVR_Set($@)
|
||||
{
|
||||
if(YAMAHA_AVR_isModel_DSP($hash))
|
||||
{
|
||||
YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"PUT\"><$zone><Surr><Pgm_Sel><Pgm>$command</Pgm></Pgm_Sel></Surr></$zone></YAMAHA_AV>", $what, $a[2]);
|
||||
if($hash->{MODEL} eq "RX-V2065")
|
||||
{
|
||||
YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"PUT\"><$zone><Surr><Pgm_Sel>$command</Pgm_Sel></Surr></$zone></YAMAHA_AV>", $what, $a[2]);
|
||||
}
|
||||
else
|
||||
{
|
||||
YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"PUT\"><$zone><Surr><Pgm_Sel><Pgm>$command</Pgm></Pgm_Sel></Surr></$zone></YAMAHA_AV>", $what, $a[2]);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user