Hi Mike!
Just FYI, v1.2.0-dev1: it still shows discovered Homeys, details:
https://github.com/ifMike/homeyHASS/issues/22
And, the missing entity values are back again, that seems to be solved.
Hi Mike!
Just FYI, v1.2.0-dev1: it still shows discovered Homeys, details:
https://github.com/ifMike/homeyHASS/issues/22
And, the missing entity values are back again, that seems to be solved.
A new dev version has been released. If anyone wants to test, please do! ![]()
Hi Mike,
dev3 installed:
A new release is out! I kind of had to rush this since a lot of sensors stopped working (and it was my dumb mistake). I also added some new features like better descriptions during setup, better error messages and discovery improvements.
Critical
Sensor unavailability fix: A registry filter was incorrectly skipping existing sensors, causing them to become orphaned and show Unavailable. Controls (lights, switches, etc.) worked, but sensors did not. This is a critical fix for all users who rely on sensor dataâtemperature, humidity, presence, distance, and similar capabilities.
Added
- Discovery card identification: Shows IPv4 on discovered cards (e.g. âHomey (192.168.1.32)â) so multiple Homeys can be distinguished. Falls back to âHomey (IP unknown)â when IPv4 cannot be resolved.
- Setup step descriptions: Step descriptions explain what to do, required permissions (Devices, Flows, System read), and Pro 2023+ limitation.
- Translations: Added translations/en.json for config flow to display step descriptions correctly.
Changed
- Discovery host field: Never show .local hostname or IPv6 in the host field. Resolve to IPv4 when possible; use empty when resolution fails. Default manual host changed from homey.local to empty.
- Error messages: Full error messages for invalid_auth and cannot_connect with causes and solutions, including Pro 2019 not supported. Passed directly since translation keys may not resolve in custom components.
Fixed
- Sensor unavailability: Removed registry filter that skipped existing sensors, causing them to become orphaned and show Unavailable (controls worked, sensors did not).
- Discovery suppression: Suppress discovery when an existing config entry points to the same host. Fixes âDiscoveredâ Homey showing when manually configured (manual uses homeyId, discovery uses MAC/hostname).
- IPv6 discovery suppression: When discovered host is IPv6, resolve hostname to IPv4 and compare with existing entries so discovery is correctly suppressed for already-configured hosts.
- Discovery card fallback: When title_placeholders was empty, the card showed âhomeyâ (domain). Now always shows âHomey (IP)â or âHomey (IP unknown)â.
If you encounter any errors or bugs, please report them (preferably on GitHub) or just let me know here!
All the best,
Mike
Hi Mike,
Thx for your work. Sensor are working fine but now I have a ânewâ Homey pro again. The integration of the sensors works fine so its ok for me.
Glad to hear it!
Iâm working on a fix for this. Iâve already added it to my dev branch if you want to test (available in my HACS repo)
Yeah, I think I need to add a logger in my dev build and have you (or someone) try it. Then see what kind of differentiation we have between different models so that I can suppress them in the discovery.
The problem is that before we actually authenticate with our token, we donât get the full picture.
Iâll let you know when I have something ![]()
EDIT:
It was a minor update to dev. So there is a new dev-1.3.
Once itâs installed, reboot and search for [discovery] in the logs.
There should be a âmodelâ field e.g.
'model': 'homey5q', 'version': '13.0.0'}
So I need to know the model for 2019. Iâm expecting it to be âhomey2â, âhomey2sâ, âhomey4dâ or similar.
If someone wants to give me a legacy model ID that donât have the local API then I can add that to the âUnsupported modelsâ list and we wonât have that problem ![]()
My Homey 2019 has model number homey3d if that helps.
Also, this is what I found while reverse engineering Homey SHS:
export const MODELS = {
desktop: 'Desktop',
homey1s: 'Homey (Early 2016)',
homey1d: 'Super Homey (Early 2016)',
homey1q: 'Super Homey (Early 2016)',
homey2s: 'Homey (Early 2018)',
homey2d: 'Super Homey (Early 2018)',
homey2q: 'Super Homey (Early 2018)',
homey3s: 'Homey (Early 2019)',
homey3d: 'Homey Pro (Early 2019)',
homey4d: 'Homey Pro (Early 2019)',
homey5q: 'Homey Pro (Early 2023)',
homey6q: 'Homey Pro mini',
homey7q: 'Homey Pro (2026)',
cloud: 'Homey Cloud',
shs: 'Homey Self-Hosted Server',
} as const;
Thank you both! This is probably what I needed!
Iâve added a filtering so Homey 2019 and older no longer show up in discovery.
From the mDNS logs I see that Pro 2023 sends model: 'homey5q' in the discovery properties, while 2019 and older apparently donât send a model at all sometimes. So I now:
model - older firmware doesnât broadcast it, so we treat them as unsupported.This is in the latest dev build. If you still see your 2019 in discovery, tell me and I can look at the logs again.
As always, thank you for testing. Really means a lot!
HOMEY_MODELS_SUPPORTED = frozenset({"homey5q", "homey6q", "homey7q", "shs", "desktop"})
HOMEY_MODELS_UNSUPPORTED = frozenset({
"homey1s", "homey1d", "homey1q", # 2016
"homey2s", "homey2d", "homey2q", # 2018
"homey3s", "homey3d", "homey4d", # 2019
"cloud",
})
My pleasure, Mike.
It seems you nailed it, v1.2.1-dev.4 doesnât show discovered Pro 2019s.
Observation:
When manually installing & updating the integration, my previous selection was gone, all devices were back. Is this âas expectedâ with manual updates?
To update, I rename the custom_components/homey folder and upload the updated homey folder to custom_components, followed by HA restart.
Funny, these âSuperâ models never seem to be sold
Great!
Then Iâll prepare a new main release, but Iâll wait just a bit to make sure I donât get any other errors with this version first.
The device selection is stored in the config entry (in Home Assistantâs .storage/core.config_entries), not in the custom_components/homey folder. So it should actually survive a manual update where you only replace the files and restart.
homey folder while HA is running, the integration can fail to load. HA may then mark the entry as failed and ask you to reconfigure. Depending on how that reconfigure flow works, it might overwrite the entry and drop the device filter (but this seems unlikely).Use HACS for updates when possible. HACS updates files in place, so the integration stays loaded and the config entry (including device filter) is preserved.
If you must update manually, avoid removing the integration from the UI. Just replace the files, restart HA, and the device selection should remain.
Aahhhh, thanks! I knew itâs not in the custom_components/homey folder, but I didnât figure out where itâs actually stored.
.
This probably was what happened in my case.
I didnât disable the integration before renaming the actively used homey folder.
.
Itâs a plan to temporary disable the integration I think.
.
I know, and itâs preferred by me as well, but, after I removed it, I couldnât add the custom repository anymore, no matter what.
In a bright moment I thought âwhat if I restore a backup from when it was added alreadyâ, and this brought things to life again.
You saved my home. I was at my wits end. I wanted to bring all devices in through Homey and then distribute to homeassistant and Alexa. Alexa has the skill built in, that worked right away. I was pulling my hair out trying to find a way to expose to HA. This is perfect. THANK YOU!