Closed vigonotion closed 3 years ago
My proposal would be to add a configuration flag max_volume: 100
to override the reported max volume. This field would be optional and if omitted, the max volume is set to the reported one.
I'm a programmer so I can implement that, but I'd like to hear opinions of this step. Is this the way to go? Is anyone else experiencing this issue? Is the max_volume even relevant or always 100?
Update: It seems like the api http://192.168.178.40/YamahaExtendedControl/v1/main/setVolume?volume=<volume>
doesn't allow volumes above max_volume
, but for the calculation, 100 has to be used.
So, instead of max_volume
, maybe this configuration option should be called volume_multiplier
, volume_factor
or something like that?
Should HA just do
self._zone.set_volume(volume)
yeah that would solve the issue for me, but couldn't it break for others?
actually, the volume * 100
is indeed neccecary, as the value that comes in is a decimal (0..1) but pymusiccast wants an integer.
Log output for the lines:
2019-02-20 07:29:20 DEBUG (SyncWorker_6) [homeassistant.components.media_player.yamaha_musiccast] Volume level: 0.59 / 47
have you updated to 0.90? if not try that. If you have updated, is this still a problem? Thanks
updating to 0.90.1 didn't solve this issue for me, issue is the same as described earlier
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue now has been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.
not working in newest HAAm 07.07.2019 14:25 schrieb "stale[bot]" notifications@github.com:There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates.
Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍
This issue now has been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.
—You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or mute the thread.
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue now has been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.
This is still an issue.
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue now has been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.
In the current stable version, this is still an issue. #30283 looks promising, yet I still have to check it after my vacations.
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue now has been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.
still an issue
@jalmeroth Mind taking a look at this issue? This might also need a change in the underlying library
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue now has been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.
This is still an issue
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.
Home Assistant release with the issue: 0.88.0b2 (but probably most versions before too)
Last working Home Assistant release (if known): -
Operating environment (Hass.io/Docker/Windows/etc.): Docker
Component/platform: media_player.yamaha_musiccast
Description of problem: When setting the volume of the media player, the actual volume is not the volume I set it to. This happens, because the volume is divided by the max_volume of the device:
line in yamaha_musiccast.py
I checked the logs, and it seems that the max volume is 80.
2019-02-19 17:38:37 DEBUG (WorkerThread) [pymusiccast.zone] Volume: 32 / Max: 80
The max volume is gathered via pymusiccast, and this does a request to the device:
http://192.168.178.40/YamahaExtendedControl/v1/main/getStatus
which results in:
so the problem isn't Home Assistant nor pymusiccast, but the device. I can confirm that the max volume is set to MAX, I also tried other values but that doesn't change anything.
Problem-relevant
configuration.yaml
entries and (fill out even if it seems unimportant):Traceback (if applicable):
Additional information: This problem occurs on my Yamaha R-N402D.