Upcoming maintenance
Dear Customers and Partners.
This website will be undergoing scheduled maintenance on June 14, 2023. Please be aware there may be disruption to the developer portal website and associated services during the scheduled maintenance period.
This upgrade is essential to ensure the continued performance, reliability, and security of Developer World.
We apologize for any inconvenience.
Remotely powering up an EU model STR-DN1080?
-
Egad! I can see why Sony didn't include Network Standby on EU models! The product specifications page says that with Network Standby enabled, power consumption is a mere 1.5 watts, all networks connected. In reality, it's well over 30 watts! I measured mine today after other people had already done the same!!!!
The good news is that Wake On LAN does work with the WiFi, and disabling Network Standby and enabling Remote Start reduces standby power consumption to a mere 2.5 - 3 watts. But you lose the quick start and the ability for Chromecast apps and Spotify:Connect to turn on the receiver.
But 31 - 35 watts on Network Standby?! I reckon there's a firmware bug there, or Sony have misrepresented the power consumption of this receiver, or have made a terrible mistake somewhere?!
The EU regulations state that Network Standby has to consume less than 13 watts, which way more than what the specifications say (1.5w) for this receiver anyway. Hmmm.....
-
So it turns out that Network Standby can be turned on for EU models using just the API! I don't have an EU model to test, but someone tested my app. This probably means Sony's API method (setPowerSettings) is breaching EU rules, right?
Should we be detecting the region of the AVR somehow before offering this feature? Although, one is merely using the API methods provided by Sony.
-
Hi @grolschie
Thank you for this. I've managed to work out most of how to get info out of my 1080 Eu model receiver but I'm stuck on the last hurdle.
If I call getPowerSettings(1.0) I can see the quickStartMode and wolMode commands.
But I can't get the syntax right for the setPowerSettings(1.0) !
I've tried a number of things but here's where I'm up to;
{
"method": "setPowerSettings",
"id": 55,
"params": [
{
"quickStartMode":"on",
}
],
"version": "1.0"
}But that is an illegal argument.
Is there any help you can give regarding this? I'm trying to enable remote start / wol on the EU version and I believe the API can do this... Thx !
-
I literally worked this out a minute after posting this.
I missed off settings [] within the argument and now it works.
Cheers!
-
@cjb The two Settings parameters needed are "target" and "value", which you probably already have discovered. Remember, power consumption is over 30w when powered off when Network Standby is enabled. Heat might increase too! Sony have now removed the 1.5w from the website specs now. Hmmm....
My prediction is that 'Network Standby' for EU models will disappear with the next firmware update. I wish they would enable Wake On LAN (called "Remote Start" by Sony) for EU models instead because it uses very little power! The setting ("wolMode") can be enabled via the API on EU models, but the hardware does nothing.
-
@grolschie Hi - so I've got 2 x EU models and what works is to enable quickstartmode first. Then enable wolmode. This then means I can send a wol packet to the amp and it will switch on remotely. I then disabled quickstartmode and one of them woke up still. Weirdly the other needs both quickstartmode and wolmode to be on to receive a wol packet... weird but anyway, they both remotely turn on now (even tho one of them is burn 30w I imagine)... thanks for your help. I'm surprised that they put this functionality in and then kinda disabled it even though it could and should use less electricity.
-
@cjb thanks for the update and information. This is very strange that 2x EU units exhibit different behaviour. Are they on the same firmware? Or has one got another Zone activated?
-
Hello
Thank you both for providing all this info, but would it be possible for any of you to give a more detailed explanation for dummies like me, who don't know the terms API, WOL and packets? Are you talking about coding your own apps? I don't even see where (or how) I should enable Quickstartmode and Wolmode...
Any help much appreciated
-
Hi @Ribtin
"quickStartMode" is what "Network Standby" is called in the API. And Network Standby allows the AVR to keep its network adapters alive when on standby and to start up quickly. It allows the AVR to be woken by Chromecast, Spotify, etc. It uses at least 30 watts when on standby, hence it is not available (officially) on EU models of the STR-DN1080.
"wolMode" is what "Remote Start" is called in the API. And "Remote Start" is what everyone else calls "Wake On LAN". For some reason its called "Remote Start" in the AVR's menus. Wake On LAN allows the AVR to fully shut down, but the network adapter can receive a special WOL packet and will then boot up the AVR. Booting up takes much longer than when on Network Standby. "Remote Start" is also not available (officially or unofficially) on EU models, even though it would be handy and uses VERY little power. My guess is that it's less than 2 watts.
Here is some more info on Wake On LAN.
API means Application Programming Interface. Sony's Audio Control API is a bunch of functions that Sony have added to some of their products to allow programmers access to various functions of the product via the network.
I hope this helps. Anything not clear, please ask.
-
@grolschie Wow, that was both very quick and extremely helpful. Thank you
Like so many others, I am also trying to figure out how to keep STR-DN1080's built-in Chromecast alive and visible, so that I can just start up any music app on my android phone and cast music to the receiver, without having to push the ON button.
If I'm not mistaken, @cjb was able to do this on two EU models, by "enabling quickstartmode first, then enabling wolmode"..? But what I don't understand is how he actually managed to enable these two settings?
-
@Ribtin PM sent.
To enable either setting you need to write an app, or send commands in the form of JSON using certain software tools such as Insomnia for Windows, or cURL in Linux.
-
@grolschie @cjb thank you both, I found the settings[] part in another thread and was able to replicate this on my device and it seems too keep its settings after unplugging the power (needs a minute or two to start).
I don't know where you found these commands but I hope you don't mind me putting the completed ones on this thread for other users.Enable quickstart:
{"method": "setPowerSettings","id": 55,"params": [{"settings":[{"target":"quickStartMode","value":"on"}]}],"version": "1.0"}
Enable WakeOnLan:
{"method": "setPowerSettings","id": 55,"params": [{"settings":[{"target":"wolMode","value":"on"}]}],"version": "1.0"}
Power on/off:
{"method": "setPowerStatus","id": 55,"params": [{"status":"active"}],"version": "1.1"} {"method": "setPowerStatus","id": 55,"params": [{"status":"off"}],"version": "1.1"}
-
@Nick-Hermans All good, I reckon.
One thing to note with the EU model is the the Wake On LAN setting appears to be set, however under the hood it does absolutely nothing apparently. There's no response to WoL packets when it's enabled.
Network Standby (aka Quick Start mode) can be enabled on the EU model via the API and the setting does work. It does use a lot of power, so I presumed that Sony would patch that to disable it on EU models. However, they don't seem to be in any hurry to fix long standing major bugs in this receiver, so maybe not.
-
Hi @grolschie ,
I have an EU model and for me it seems both wol and network standby seems working when set via the API. Network standby really would be a nice feature if it wouldn't consume such a lot of power... Too bad οΈ
Best regards, Vincent
-
@Vincent-Vanbroekhoven very interesting. Thanks for that info.
What did you use to send the Wake On LAN packet to wake up the receiver? Other people have reported that it shows as being enabled, but doesn't wake up. Are you using the latest firmware? Maybe firmware is the difference. I wonder, it's firmware country-specific, or region specific?
The good news is, with Network Standby disabled, but Wake On LAN (aka Remote Start) enabled, it uses very little power. But does take longer to wake up.
-
@grolschie I've tried with Depicus tool and with my loxone domotics system. Both succeed to wake up the receiver after enabling wol via the API. I'm indeed on the latest firmware.. I'm also thinking of buying a smart plug to monitor the power consumption
-
@Vincent-Vanbroekhoven Thanks for that. Weird that some EU folk cannot get WOL to work.
-
Hi, I have great news guys, after a few days dealing with this issue (enabling Network standby: ON for European devices) I found the solution
This is what you need to do:
Download MyAv app on an Android device.
Link your STR-DN1080
Go to Settings/Advance settings
Activate the option "Power this device up when MyAV starts (WOL)"Itβs working now, canβt believe it!
This is awesome as I was quite disappointed but now I have my AV fully working as desired.
Thanks to a random guy who shared this info on another forum. You made my day!
Please let me know if it works for you too.
I can wake up my AV from Spotify when streaming starts while it is in standby, I hope this helps to all the Sony fans
Cheers,
Juanjo -
@juanjo-lopez Hi. It's basically what my app 'StrRemote Pro' does. However, even though MyAV calls it "WOL", it's not. It's actually Network Standby.
-
@juanjo-lopez Works like a charm! You're the random guy to me and fixed a issue that bothered me for quite some time!
Thanks man!