RobHofmann / HomeAssistant-GreeClimateComponent

Custom Gree climate component written in Python3 for Home Assistant. Controls AC's supporting the Gree protocol.
GNU General Public License v3.0
321 stars 107 forks source link

explanation of the option parameters 可选参数名的真正意思 #90

Closed hemingfei closed 4 years ago

hemingfei commented 4 years ago

I am a little confused about the parameters meaning.

example we have is below:


whats the meaning of xfan, eightdegheat, air?

I guess: xFan is let the fan move and stop. eightdegheat is the fastest wind speed on and off. air is the clean mode?

in another words in chinese. 这些参数是什么意思, xfan是扫风么,eightdegheat是强劲么, air是清洁么。

by the way, is there a parameter that can control the wind speed?

RobHofmann commented 4 years ago

Some of the parameters are explained by @wjketting here: https://github.com/RobHofmann/HomeAssistant-GreeClimateComponent/pull/16#issuecomment-496016366

If you initially want to setup this component, this should be enough:

platform: gree
name: First AC
host:
port: 7000
mac: ''
target_temp_step: 1

After adding the component, you will be able to control the temperature, windspeed, mode & fan direction of the AC.

Let me know if you need any more help.

EDIT: Don't forget to fill in the values in the configuration ofcourse :)

hemingfei commented 4 years ago

thanks mate. I found the windspeed and fan direction.

I still confused about the xfan, eightdegheat and air. whats the explanation.

In my home. 4 gree ac is OK to connected the home assistant. another 1 gree ac is still cannot, im still trying to find the problem. here is the link of the ac https://item.jd.com/71568246114.html it can control by the app gree+

RobHofmann commented 4 years ago

XFan: It seems that the XFan option (if your gree AC supports it) "dries" the AC after being used. This is to mitigate the nasty smells you can otherwise get.

Air (Scavenging Function): This mode allows the indoor unit to extract air from the room. if the room is very hot, you can enable this to cool the room down very quickly. It can also be used to remove odors from the room quickly. Text from the manual: Аннотация 2020-08-05 173706 Source: https://github.com/RobHofmann/HomeAssistant-GreeClimateComponent/issues/78

8C Heat function: This one I forgot and cannot find back. Maybe @PLTorrent or @wacher74 can say something about this?


Also note that there are some incompatibilities with some Gree AC types.

wacher74 commented 4 years ago

"8° Celsius mode, this feature maintains the room temperature steadily at 8°C and prevents the room from freezing by activating the heating operation automatically when nobody is at home over a longer period during severe winter."

wacher74 commented 4 years ago

This is not a manual temperature settings, but "activating the heating operation automatically"

RobHofmann commented 4 years ago

Thanks @wacher74 for clearing it up.

I updated the README to explain the features to my best ability.