[SOLVED] Yamaha Net Radio Problem

Sorry, I don’t have any experience with the RX-Vx85 models. Do they support DLNA? I’ve read somewhere that manufacturers are dropping support for DLNA nowadays, so this might be the problem…

I adjusted the rules to this:

rule VirtuellesRadioAn
when
Item VirtuellesRadio received command ON
then
if (Yamaha_Power.state == OFF){
    Yamaha_Power.sendCommand(ON)
}
//Yamaha_Input.sendCommand("SERVER")
Yamaha_Volume.sendCommand(30)
if (VirtuellesRadio_Station.state == NULL){
    VirtuellesRadio_Station.sendCommand("1Live")
}
var favID = transform("MAP", "radio2.map", VirtuellesRadio_Station.state.toString())
Thread::sleep(3000) // Warte
sendHttpGetRequest("http://192.168.15.20/YamahaExtendedControl/v1/netusb/recallPreset?zone=main&num=" + favID)
end

So i can use the favorites in the music cast app. In the Mapping it looks like this:

1Live=1
Absolut\ Relax=2

It works well!