Julius van der Vaart

Results 17 comments of Julius van der Vaart

_Edit: sorry didn't notice this is the repo for the roon api interface!_ Don't know all the code that should be changed for this but [roon/media_player.py line 192](https://github.com/home-assistant/core/blob/effe8d9207365fa45b69274a06ff57b5ac154dcf/homeassistant/components/roon/media_player.py#L192) could be...

I’m going to take a look next week! Thanks.

So, tried to change te code but not really into Python. So not sure how to test...

Found out by running your demo.py that the Matrix Mini i3 reports the volume as `'type': 'number'` instead of `'type': 'db'`. So going to raise that issue with Roon first.

The missing dB scale is a bug. It doesn't show it in the remote. They passed it on to the dev-team.

It’s crazy that you mention this, because this morning i was thinking about it. The example i gave above should work with every range because it converts the range to...

Allright, so the following code works when changing the volume from Roon it updates the HA volume accordingly. media_player.py from line 179 ``` try: volume_data = player_data["volume"] volume_muted = volume_data["is_muted"]...

The same logic should probably apply to the `set_volume_level()`, `volume_up()` and `volume_down()` functions for the other way round? (change from HA and update Roon)

This works for me when changing the volume from HA on both devices: set_volume_level() ``` def set_volume_level(self, volume: float) -> None: """Send new volume_level to device.""" volume = int(volume *...

Sorry, this works in the Roon component in HA... so my solution is on the wrong repository!