core: Gree integration - AC not found

The problem

Gree integration - AC not found

Environment

  • Home Assistant Core release with the issue: 0.117, 0117.1
  • Last working Home Assistant Core release (if known): -
  • Operating environment (OS/Container/Supervised/Core): OS
  • Integration causing this issue: Gree A/C
  • Link to integration documentation on our website: https://www.home-assistant.io/integrations/gree/

Problem-relevant configuration.yaml


Traceback/Error logs

2020-10-31 13:51:10 INFO (SyncWorker_33) [homeassistant.util.package] Attempting install of \greeclimate==0.9.2
2020-10-31 13:51:28 INFO (MainThread) [greeclimate.discovery] Starting Gree device discovery process
2020-10-31 13:51:29 DEBUG (MainThread) [greeclimate.network] Listening for devices on 192.168.0.1

Additional information

ACs - Cooper and Hunter HA in 192.168.0.1/24 AC in 192.168.10.1/24 Ping from HA to ACs works without problem.

PS: If i use custom integration, everything works.

About this issue

  • Original URL
  • State: closed
  • Created 4 years ago
  • Comments: 20 (8 by maintainers)

Most upvoted comments

@andrewjswan I’ve a change for you test, to see if this helps your situation. I’ll need you to install it as a custom_component and restart HA to test, this will try to use a slightly different broadcast address.

Change are from here: https://github.com/cmroche/core/tree/gree-discovery-test-20201102/homeassistant/components/gree

This is a script you can paste (while in bash in your custom_components folder) to copy the files more easily

if [ -d "gree" ]; then rm -Rf gree; fi
mkdir -p gree

pushd gree
wget https://raw.githubusercontent.com/cmroche/core/gree-discovery-test-20201102/homeassistant/components/gree/__init__.py
wget https://raw.githubusercontent.com/cmroche/core/gree-discovery-test-20201102/homeassistant/components/gree/bridge.py
wget https://raw.githubusercontent.com/cmroche/core/gree-discovery-test-20201102/homeassistant/components/gree/climate.py
wget https://raw.githubusercontent.com/cmroche/core/gree-discovery-test-20201102/homeassistant/components/gree/config_flow.py
wget https://raw.githubusercontent.com/cmroche/core/gree-discovery-test-20201102/homeassistant/components/gree/const.py
wget https://raw.githubusercontent.com/cmroche/core/gree-discovery-test-20201102/homeassistant/components/gree/manifest.json
wget https://raw.githubusercontent.com/cmroche/core/gree-discovery-test-20201102/homeassistant/components/gree/strings.json

popd