Ilya
Ilya
Check this https://github.com/RobHofmann/HomeAssistant-GreeClimateComponent/issues/200#issuecomment-2267831199
I did some checks. This can be supported, by adding subList function. When sending `{"t": "scan"}` request i got: `{"t":"dev","bc":"","catalog":"gree","series":"gree","model":"gree","lock":0,"vender":"1","mid":"60","name":"GR-Gcloud_60_0a_5ba3_EC","ver":"V3.2.M","mac":"9424b8fd5ba3","subCnt":6}` **"subCnt":6** is number of indoor units. Then sending request to...
hope this will help ``` def GetUnitsList(mac_addr,ip_addr,port,timeout,encryption_version): GENERIC_GREE_DEVICE_KEY = "a3K8Bx%2r8Y7#xDh" json = '{"mac":"' + str(mac_addr) + '"}' pack = EncryptPack(GENERIC_GREE_DEVICE_KEY,json) jsonPayloadToSend = '{"cid": "app","i": 1,"pack": "' + pack + '","t":"subList","tcid":"'...