### Other Infomations
I have been trying to get my Irrigation system working with Homekit, and even though it's detected and added to my Homekit, it doesn't work.
<img width="519" alt="image" src="https://github.com/0x5e/homebridge-tuya-platform/assets/1249548/beab9416-b0c7-46b9-817b-c39b941fc296">
<br><br>
By default, this plug-in sends the boolean switch command to Tuya's openapi, which is the reason why currently it doesn't work with this type of Irrigator. After some debugging on Tuya's IoT platform, I realized the device expects two parameters/commands to be sent: switch and countdown, and if I just set the switch to on or off without passing the countdown, nothing happens.
And if I use the following command, it works (it will turn on the device for 60 seconds) :
<br><br>
<img width="440" alt="image" src="https://github.com/0x5e/homebridge-tuya-platform/assets/1249548/82347c4e-4b96-4b3b-a039-17efb6eeb733">
<br><br>
I tried to use the deviceOverrides option in the config and tried so many different scenarios, but still the plug in would send the default `
body = {
"commands": [
{
"code": "switch",
"value": true/false
}
]
}
`
command as body!
So no matter what I use for overriding the schema, the tuya-platform plug-in would always send the same command.
Prerequisite
Cache
Version
v1.7.0-beta.45
Device Infomation JSON File
Device Control Mode
DP Instruction
Logs
However, when I use the Smart Life app to control my device, everything is fine, and I get the following logs in my Homebridge logs: