You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Добрый день! Спасибо за разработку модуля. У меня возникла проблема с параметром громкости для ТВ. Когда я говорю Алисе :"Прибавь громкость на телевизоре", то звук увеличивается только на один пункт и сбрасывается до параметра state.
Добрый день! Спасибо за разработку модуля. У меня возникла проблема с параметром громкости для ТВ. Когда я говорю Алисе :"Прибавь громкость на телевизоре", то звук увеличивается только на один пункт и сбрасывается до параметра state.
`{
name: 'Телевизор',
room: 'Комната',
type: 'devices.types.media_device.tv',
mqtt: [
{
type: 'on',
set: '/smarthome/out/Tv_On_Mqtt',
stat: '/smarthome/out/Tv_On_Mqtt'
},
{
type: 'mute',
set: '/smarthome/subin/myKodi_mute',
stat: '/smarthome/in/myKodi_mute'
},
{
type: 'volume',
set: '/smarthome/subin/myKodi_volume',
stat: '/smarthome/out/myKodi_volume'
},
{
type: 'channel',
set: '/smarthome/subin/myKodi_channel',
stat: '/smarthome/out/myKodi_channel'
},
],
capabilities: [
{
type: 'devices.capabilities.on_off',
retrievable: true,
state: {
instance: 'on',
value: true
}
},
{
type: 'devices.capabilities.toggle',
retrievable: true,
parameters: {
instance: 'mute'
},
state: {
instance: 'mute',
value: true
},
},
The text was updated successfully, but these errors were encountered: