Turn Off the Beeping sound in Samsung AirConditioner with atribute/command in custom App

Hello @Johny_Faillab!

Yes @GSzabados.

Here is the command to mute device:

{
   "commands":[
      {
         "component":"main",
         "capability":"execute",
         "command":"execute",
         "arguments":[
            "mode/vs/0",
            {
               "x.com.samsung.da.options":[
                  "Volume_Mute"
               ]
            }
         ]
      }
   ]
} 

The capability is the “execute” because this is related to OCF command only (it goes direct to device using OCF)

Well, if you want to turn off device display (light) this is the command:

{
   "commands":[
      {
         "component":"main",
         "capability":"execute",
         "command":"execute",
         "arguments":[
            "mode/vs/0",
            {
               "x.com.samsung.da.options":[
                  "Light_On"
               ]
            }
         ]
      }
   ]
}

You probably need to write something in your application to sent this type of capability (execute), I’ve created a modified pysmartthings for ACs if you want I can share changed files.

2 Likes