-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eArc Connected Sound Bar Volume #46
Comments
same here. |
Just run into the same issue, used ls-monitor to debug which luna call happen when I increase/decrease the volume via MR:
so we can use {
"virtualService": "audio",
"version": 1,
"methods": [
{
"path": "/getVolume",
"provider": "com.webos.service.audio/master/getVolume"
},
{
"path": "/setVolume",
"provider": "com.webos.service.audio/master/setVolume"
},
{
"path": "/volumeUp",
"provider": "com.webos.service.audio/master/volumeUp"
},
{
"path": "/volumeDown",
"provider": "com.webos.service.audio/master/volumeDown"
},
{
"path": "/getMute",
"provider": "com.webos.service.apiadapter/audio/getMute"
},
{
"path": "/setMute",
"provider": "com.webos.service.apiadapter/audio/setMute"
},
{
"path": "/getStatus",
"provider": "com.webos.service.apiadapter/audio/getStatus"
},
{
"path": "/changeSoundOutput",
"provider": "com.webos.service.apiadapter/audio/changeSoundOutput"
},
{
"path": "/getSoundOutput",
"provider": "com.webos.service.apiadapter/audio/getSoundOutput"
}
]
}
{
"service": "com.webos.service.audio",
"methods": [
{
"path": "/tv/setOffsetDelay",
"description": "Set av sync delay",
"requiredPermissions": [
"CONTROL_AUDIO"
]
},
{
"path": "/master/getVolume",
"description": "Get the volume.",
"requiredPermissions": [
"CONTROL_AUDIO"
]
},
{
"path": "/master/setVolume",
"description": "Set the volume.",
"requiredPermissions": [
"CONTROL_AUDIO"
]
},
{
"path": "/master/volumeUp",
"description": "Increase the volume.",
"requiredPermissions": [
"CONTROL_AUDIO"
]
},
{
"path": "/master/volumeDown",
"description": "Decrease the volume.",
"requiredPermissions": [
"CONTROL_AUDIO"
]
}
]
}
{
"service": "com.webos.service.btaudiosnk",
"methods": [
{
"path": "/open",
"description": "Enable BT Sound Share feature",
"requiredPermissions": [
"CONTROL_BLUETOOTH"
]
},
{
"path": "/close",
"description": "Disable BT Sound Share feature",
"requiredPermissions": [
"CONTROL_BLUETOOTH"
]
},
{
"path": "/getState",
"description": "Get status of BT devices",
"requiredPermissions": [
"CONTROL_BLUETOOTH"
]
},
{
"path": "/disconnect",
"description": "To disconnect the bluetooth device connected to TV",
"requiredPermissions": [
"CONTROL_BLUETOOTH"
]
}
]
} |
It seem as though when an eArc sound bar is connected to the tv I'm unable to control its volume, aside from mute.
When the sound bar is not connected though I'm able to control as expected.
The text was updated successfully, but these errors were encountered: