Hi, this is my first post
I have two Samsung HVAC and I want to manage them from my domoticz system
My models are Samsung Windfree AR**TXFCAWKNEU
I have integrated them with several options/commands sent with the REST API
But I have a problem with one specific mode, the “Quiet” command
This mode can be enabled with the remote and also with the ST Android app.
But when I try with the API, it does not work.
I’m testing with postman with this body:
commands":[{“component”:“main”,“capability”:“custom.airConditionerOptionalMode”,“command”:“setAcOptionalMode”,“arguments”:[“quiet”]}]}
And also with the OCF command:
{“commands”:[{“component”:“main”,“capability”:“execute”,“command”:“execute”,“arguments”:[“mode/convenient/vs/0”, {“x.com.samsung.da.mode.convenient”:[“Quiet”]}]}]}
But the json response for both commands is ACCEPTED instead of COMPLETED
If I check the capabilities of the HVAC with the status command, I can see that “quiet” is not included.
“custom.airConditionerOptionalMode”: {
“supportedAcOptionalMode”: {
“value”: [
“off”,
“sleep”,
“speed”,
“windFree”,
“windFreeSleep”
But if I send the command with the app or the remote, the status shows that the mode “quiet” has been processed:
“acOptionalMode”: {
“value”: “quiet”,
“timestamp”: “2023-02-13T20:57:23.765Z”
So, I can´t understand what is happening.
Does the ACCEPTED response means that the command is correct but not implemented?
Is a lack in the API or the firmware of my HVAC?
Thanks in advance for your help
Javier