Core: Heatmiser Climate Component Erroring

Created on 12 Mar 2018  ·  51Comments  ·  Source: home-assistant/core

Issue setting up the heatmiser climate component looks like some kind of casting issues from string to int?

Hass.io version 0.65.3

Heres the error log:

Error while setting up platform heatmiser
Traceback (most recent call last):
  File "/usr/lib/python3.6/site-packages/homeassistant/helpers/entity_platform.py", line 82, in async_setup
    SLOW_SETUP_MAX_WAIT, loop=hass.loop)
  File "/usr/lib/python3.6/asyncio/tasks.py", line 358, in wait_for
    return fut.result()
  File "/usr/lib/python3.6/asyncio/futures.py", line 245, in result
    raise self._exception
  File "/usr/lib/python3.6/concurrent/futures/thread.py", line 56, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/lib/python3.6/site-packages/homeassistant/components/climate/heatmiser.py", line 52, in setup_platform
    heatmiser, tstat.get(CONF_ID), tstat.get(CONF_NAME), serport)
  File "/usr/lib/python3.6/site-packages/homeassistant/components/climate/heatmiser.py", line 69, in __init__
    self.update()
  File "/usr/lib/python3.6/site-packages/homeassistant/components/climate/heatmiser.py", line 119, in update
    self.dcb = self.heatmiser.hmReadAddress(self._id, 'prt', self.serport)
  File "/usr/lib/python3.6/site-packages/heatmiserV3/heatmiser.py", line 221, in hmReadAddress
    datal = hmSendAddress(destination,0,0,0,serport)
  File "/usr/lib/python3.6/site-packages/heatmiserV3/heatmiser.py", line 203, in hmSendAddress
    msg = hmFormMsgCRC(destination, protocol, constants.MY_MASTER_ADDR, rw, address, payload)
  File "/usr/lib/python3.6/site-packages/heatmiserV3/heatmiser.py", line 87, in hmFormMsgCRC
    data = data + crc.run(data)
  File "/usr/lib/python3.6/site-packages/heatmiserV3/heatmiser.py", line 58, in run
    self.CRC16_Update(c)
  File "/usr/lib/python3.6/site-packages/heatmiserV3/heatmiser.py", line 52, in CRC16_Update
    self.Update4Bits(val>>4) # High nibble first
TypeError: unsupported operand type(s) for >>: 'str' and 'int'

and heres my config settings:

climate:
  - platform: heatmiser
    ipaddress: 192.168.1.87
    port: 29
    tstats:
      1:
        id: 1
        name: Lounge
in progress heatmiser stale

All 51 comments

can you try the following config:

climate:
  - platform: heatmiser
    ipaddress: 192.168.1.87
    port: 29
    tstats:
      - 1:
        id: 1
        name: 'Lounge'

Was this working in previous version of HASS? If so, can you update the ticket with the last version it was working in?

I'm pretty new to HASS so it's not worked from the get-go, I get the same error with the config file changed as above. (build 0.66.0)

I did try using the very latest version of the python package (heatmiserV3) but the guy who built it has refactored the code heavily and I'm very new to python, so wasn't sure were to start to get it to work with HASS, not sure if the code has been changed due to it not being compatible with the newer version of python HASS is now using?

I would rely on the version that HASS installs, as that's the one it will require based on the code version. My suggestion is that you post in the community forum and reach out to other heatmiser users, I'm sure you're not the only one. Perhaps your configuration needs fixing, and at the very least, maybe you'll find other people with the same issue.

If you can't find any resolution in the community forums, then my suggestion is that you come back here and try to politely ping some of the users that have submitted pull requests to the heatmiser component, maybe one of them can help. But the first step is to make sure this is an issue.

I can confirm this is a problem for me too. Relatively new to HA, and running Hassbian 0.63.3 and have not managed to get it working and get exactly the same error.

Doesn't seem to be enough people in the community forums using Heatmiser thermostats, I've tried a few posts and messages but without luck, that's why I posted here, can only think of trying to get it working without HASS with just the python component to try and debug if its HASS, my setup or the component?

So in reviewing the component itself, it looks like it's meant to work with the following

PRT Heatmiser themostats using the V3 protocol

I'm not familiar with the Heatmiser products, but is the PRT (Programmable Room Thermostat) a specific model in their line? I'm sure you guys have already reviewed the v3 documentation, but it says it's compatible with the following:

DT/DT-E/PRT/PRT-E/PRT-HW
Heatmiser have used their V3 protocol in a number of sensors. Your mileage may vary in attempting to use this library to communicate with them, but please open a pull request if you get something working.

That being said, I agree with @brettyboo, the first step is to make sure the python component works, perhaps @tinloaf can add some suggestions.

also found this for you guys, not sure if it helps
https://github.com/RJ/heatmiser-neohub.py

Hi. Yes the PRT ones are a specific (older) subset of their range.

The Neohub stuff is new and current, and not related to these thermostats.

Thanks @JudgeDreddKLC for looking into this :-)

Those are the newer NEO thermostats from Heatmiser, they use a totally different way of interfacing with them. The Heatmiser ones this component controls (DT/DT-E/PRT/PRT-E/PRT-HW) are low voltage thermostats that connect to a control unit (Heatmiser UH1) via CAT5 cable which uses rs485 serial protocol to communicate with each other. I have an RS485 to Ethernet Converter attached to the UH1 so it could be my setup but if @JCTucker1 get simlar results maybe not

I have the same setup as @brettyboo and can see on the RS485 converter that there is clearly activity, however I suspect this is failing before it even starts to connect to the thermostats.

Does feel as if the response is not being dealt with correctly like it should be an integer but is sent as a string or something like that, not done anything with serial ports but presume it'll be some sort of hex value

Yes, looks like something that should be an int is passed in as string. I don't see what, on the first glance. Maybe @andylockran can spot it?

i've used your example to graph my heatmisers output, but it only graphs the target temperature despite showing the current and targets in the graph legend.

history_graph:
gr1:
entities:
- climate.heatmiser_wifi

As I'm new to all this I prepared to believe it is something basic I'm not doing correctly, missing the obvious, is there a way of showing the current temperature?

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates.

Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment :+1:

Hey,

I need to find some time to update the drivers. It may be in a broken
state at the moment. I'll get back to you in a few weeks, as I'm on annual
leave until the 14th August.

Andy

On Thu, Jul 26, 2018 at 1:07 PM, balloobbot notifications@github.com
wrote:

There hasn't been any activity on this issue recently. Due to the high
number of incoming GitHub notifications, we have to clean some of the old
issues, as many of them have already been resolved with the latest updates.

Please make sure to update to the latest Home Assistant version and check
if that solves the issue. Let us know if that works for you by adding a
comment 👍


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-408075454,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN70W8Hzz0Jinol_QD3jBDy8beCDZVks5uKbEKgaJpZM4SnZs2
.

Thanks Andy,
Really hope you can fix this so my thermostats aren't so dumb!

Aye, the good news is that my python has vastly improved since writing the
original driver, the bad news is that home-assistant.io has moved on alot
(which is also good news really) - so I need to rewrite the interface.

On Thu, Jul 26, 2018 at 1:57 PM, brettyboo notifications@github.com wrote:

Thanks Andy,
Really hope you can fix this so my thermostat aren't so dumb!


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-408088122,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN7z0upeDBuG2SvR7jx0Zzrg4b4P9Mks5uKby5gaJpZM4SnZs2
.

Hi @andylockran
Did you find any time to look at this? ;-)

Got a Heatmiser set of Stats and a Netmonitor unit and cant find anyway of getting the setup to work in Hassio have tried the HA inbuilt Heatmiser component with an RS485 and get the same errors as above.

Does anyone have this working??

I do. Let me help out tonight. My module is broken. I'll fix it.

On Sat, 12 Jan 2019, 16:03 StuartJeffery, notifications@github.com wrote:

Got a Heatmiser set of Stats and a Netmonitor unit and cant find anyway of
getting the setup to work in Hassio have tried the HA inbuilt Heatmiser
component with an RS485 and get the same errors as above.

Does anyone have this working??


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-453758428,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN71PbqAQcn1-KxBkARMMOblctUIgUks5vCgYMgaJpZM4SnZs2
.

Sounds good. Keen to find a solution. I have a Brainboxes Ethernet to Serial/RS485 ES357 not sure on the pin out into a single thermostat for test.

Have you fixed your module?

Yeah, the upstream driver I worked on last night and fixed. I'm just in
the process of updating the heatmiser climate component in homeassistant.
It's moved on quite a bit since I last contributed. Any help someone can
give me with the configs and a code/review test of my PR would be
appreciated.

Cheers,

Andy

On Sun, Jan 13, 2019 at 8:04 AM StuartJeffery notifications@github.com
wrote:

Have you fixed your module?


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-453810137,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN7-n9rCMeeHlE5qFRWn0ADq4bbAlPks5vCuiNgaJpZM4SnZs2
.

I can test any work that you have done?

Any update on this?

Hi Stuart,

I've fixed the library upstream but am struggling to integrate properly
with home assistant. I've reached out for help, but no reply yet.

Thanks for your patience,

Andy

On Sat, 19 Jan 2019, 15:48 StuartJeffery <[email protected] wrote:

Any update on this?


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-455791102,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN7zQI6Q3yY3rjVCSQlEbSaFrUbcSbks5vEz46gaJpZM4SnZs2
.

Hi Andy, I’m confused as you said you had it working?

Hi Stuart,

I could hack it to make it work, but it's a fairly low level issue that
I've seen break the serial interface.

My options are to either reinitiate a serial connection for each
change/update event, or to fix this properly so that all thermostats can
work off the same serial object.

The biggest problem I see is that if I don't fix this problem, it would
probably only show up as an intermittent issue that would be even more
frustrating.

Ive reached out to find if there's someone better familiar with the
architecture who can advise where I fix this. If you're happy with a hack,
I'll release a 'beta' version that will allow it to work - but I want to
get the proper fix aligned with home assistant so it's serial safe and
won't lock up your serial interface.

Andy

On Sun, 20 Jan 2019, 07:42 StuartJeffery <[email protected] wrote:

Hi Andy, I’m confused as you said you had it working?


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-455844522,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN77gJ3b49qTPyj9HtnQhhW2ydsr5uks5vFB3wgaJpZM4SnZs2
.

Hi Andy,

I would be happy to test beta version to get things working, until a permanent fix found.

Kind Regards

Stuart

On 20 Jan 2019, at 12:55, Andy Loughran <[email protected]notifications@github.com> wrote:

Hi Stuart,

I could hack it to make it work, but it's a fairly low level issue that
I've seen break the serial interface.

My options are to either reinitiate a serial connection for each
change/update event, or to fix this properly so that all thermostats can
work off the same serial object.

The biggest problem I see is that if I don't fix this problem, it would
probably only show up as an intermittent issue that would be even more
frustrating.

Ive reached out to find if there's someone better familiar with the
architecture who can advise where I fix this. If you're happy with a hack,
I'll release a 'beta' version that will allow it to work - but I want to
get the proper fix aligned with home assistant so it's serial safe and
won't lock up your serial interface.

Andy

On Sun, 20 Jan 2019, 07:42 StuartJeffery <[email protected]notifications@github.com wrote:

Hi Andy, I’m confused as you said you had it working?


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-455844522,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN77gJ3b49qTPyj9HtnQhhW2ydsr5uks5vFB3wgaJpZM4SnZs2
.


You are receiving this because you commented.
Reply to this email directly, view it on GitHubhttps://github.com/home-assistant/home-assistant/issues/13146#issuecomment-455864266, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AseAjGNGgpMewa8BsKd9UkwR1fRuHOD5ks5vFGdEgaJpZM4SnZs2.

I am happy to test a beta to get things going?

Ok, I've got a workable solution up on my personal branch:

My config looks like this:

(venv3) ➜ home-assistant git:(fixing/heatmiser) ✗ cat
~/.homeassistant/heatmiser.yaml

  • platform: heatmiser
    ipaddress: 192.168.1.57
    port: 102
    tstats:

    • room: Living

      id: 1

      model: prt

    • room: Bathroom

      id: 2

      model: prt

    • room: Bedroom

      id: 3

      model: prt

    • room: Bedroom2

      id: 4

      model: prt

You can get the code at
https://github.com/andylockran/home-assistant/tree/fixing/heatmiser

Also - if anyone needs other models supporting - I can supply the docs and config values to get you started on helping me upstream. Sorry for the delays.

Hi Andy,
Not got that much experience with HA, but I've managed to do some tests of this.

What works :
Recognises all stats
Reads and Writes target temperatures fine

Whats not working:
Reading current temperature of all stats - all showing 26C.

Here's the error output:

Error doing job: Task exception was never retrieved
Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity_platform.py", line 352, in _async_add_entity
    await entity.async_update_ha_state()
  File "/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity.py", line 239, in async_update_ha_state
    attr = self.state_attributes or {}
  File "/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 228, in state_attributes
    self.hass, self.min_temp, self.temperature_unit,
  File "/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 524, in min_temp
    self.temperature_unit)
  File "/usr/local/lib/python3.6/site-packages/homeassistant/util/temperature.py", line 28, in convert
    to_unit, TEMPERATURE))
ValueError: <bound method HeatmiserUH1.temperature_unit of <Entity None: unknown>> is not a recognized temperature unit.

Hey Brett,

Really appreciate the feedback - thanks :)

Can you confirm your thermostat model please? It'd also be ace to test my
upstream module to see if that works - can I share instructions to check
that the thermostats are reporting correctly?

I think the error message above is because I've persisted and registered
the UH1 module as a Climate Device, so is unrelated to the reading current
temp - it was a hack to ensure that the HeatmiserUH1 module persisted.

Cheers,

Andy

On Tue, Jan 22, 2019 at 7:18 PM Brett notifications@github.com wrote:

Hi Andy,
Not got that much experience with HA, but I've managed to do some tests of
this.

What works :
Recognises all stats
Reads and Writes target temperatures fine

Whats not working:
Reading current temperature of all stats - all showing 26C.

Here's the error output:
Error doing job: Task exception was never retrieved Traceback (most recent
call last): File
"/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity_platform.py",
line 352, in _async_add_entity await entity.async_update_ha_state() File
"/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity.py",
line 239, in async_update_ha_state attr = self.state_attributes or {} File
"/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py",
line 228, in state_attributes self.hass, self.min_temp,
self.temperature_unit, File
"/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py",
line 524, in min_temp self.temperature_unit) File
"/usr/local/lib/python3.6/site-packages/homeassistant/util/temperature.py",
line 28, in convert to_unit, TEMPERATURE)) ValueError: HeatmiserUH1.temperature_unit of > is not a
recognized temperature unit.


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-456527242,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN7_B_M1rk34hw23r3ved7MpD_y9vyks5vF2QCgaJpZM4SnZs2
.

Hi Andy,
Not got that much experience with HA, but I've managed to do some tests of this.

What works :
Recognises all stats
Reads and Writes target temperatures fine

Whats not working:
Reading current temperature of all stats - all showing 26C.

Here's the error output:

Error doing job: Task exception was never retrieved
Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity_platform.py", line 352, in _async_add_entity
    await entity.async_update_ha_state()
  File "/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity.py", line 239, in async_update_ha_state
    attr = self.state_attributes or {}
  File "/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 228, in state_attributes
    self.hass, self.min_temp, self.temperature_unit,
  File "/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 524, in min_temp
    self.temperature_unit)
  File "/usr/local/lib/python3.6/site-packages/homeassistant/util/temperature.py", line 28, in convert
    to_unit, TEMPERATURE))
ValueError: <bound method HeatmiserUH1.temperature_unit of <Entity None: unknown>> is not a recognized temperature unit.

Just found a stupid error that I'd duplicated ()() on the read_floor_temp line - please try with latest fix. Sorry!

Cool ill take a look at it tonight, plus let us know whats needed for the upstream module and ill test this to? Im using PRT-N (V3) stats with a UH1

This is the same setup as mine. Just a thought when we get this fully working integration of PRT-N HW (Hot Water) would be a bonus.

Ok I've tested the component still got the same issues with not getting current temp this is the error message looks slightly different :

Log Details (ERROR)
Wed Jan 23 2019 20:34:54 GMT+0000 (Greenwich Mean Time)

Error doing job: Task exception was never retrieved
Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity.py", line 239, in async_update_ha_state
    attr = self.state_attributes or {}
  File "/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 228, in state_attributes
    self.hass, self.min_temp, self.temperature_unit,
  File "/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 524, in min_temp
    self.temperature_unit)
  File "/usr/local/lib/python3.6/site-packages/homeassistant/util/temperature.py", line 28, in convert
    to_unit, TEMPERATURE))
ValueError: <bound method HeatmiserUH1.temperature_unit of <Entity None: unknown>> is not a recognized temperature unit.

Still getting the above error, but did a bit of debugging of the values in the dcb returned, and the current room temperature for the PRT-N stats is set under parameter 33 (Built in air temp) so i hacked at the component to get it to sort of work, not tested if it polls the stats yet but i suspect it isn't.

init function:
```def __init__(self, thermostat, name):
"""Initialize the thermostat."""
self.thermostat = thermostat
self.dcb = self.thermostat.read_dcb()
self._current_temperature = (self.dcb[33]['value'] / 10)
self._name = name

current temp function:
```  @property
    def current_temperature(self):
        """Return the current temperature."""
        return (self.dcb[33]['value'] / 10)

Is this still an issue you are experiencing? Can you please try upgrading to the latest version of Home Assistant (0.90) and report back if this is still a problem? Thanks!

I've not tried version 0.90, ill test this week I've had to make a custom component to get it to work, also requires a custom config to pick the type of temp sensor you are using (floor or air), it works but using the old way of building a component like the original one, to get it in the live repo do i just need do a PR? @tjhowse

How come you had to create the custom component?

On Mon, 25 Mar 2019, 10:27 Brett, notifications@github.com wrote:

I've not tried version 0.90, ill test this week I've had to make a custom
component to get it to work, also requires a custom config to pick the type
of temp sensor you are using (floor or air), it works but using the old way
of build a component like the original one, to get it in the live repo do i
just need do a PR? @tjhowse https://github.com/tjhowse


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146#issuecomment-476135901,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABWN7xF0PxM8khJ8bnwUXHy04wRL6Mwhks5vaKSbgaJpZM4SnZs2
.

Because the current HA one uses the floor temperature sensor, and all my stats are using the air temperature sensor, so I've tweaked the current component to allow you to choose which in the config yaml, also added it so you can switch the stats to frost mode and alter the temps for that as well, its a bit ruff and ready and had to make a few changes to get the polling to be more reliable, but it all works ill make a branch so you can see the progress... be kind im a python noob hahha

Version 0.90 still doesn't work, my changes to the component work with it tho @tjhowse

Here's an example of the altered config:

climate:
  - platform: heatmiser
    ipaddress: 192.168.1.87
    port: 26
    tstats:
      - room: Living Room
        id: 1
        model: prt
        sensor: air
      - room: Hallway
        id: 2
        model: prt
        sensor: air
      - room: Dining Room
        id: 3
        model: prt
        sensor: air

And custom component here:
https://github.com/bretttickx/home-assistant/blob/dev/homeassistant/components/heatmiser/climate.py

Hi Andy & Brett

I have just started using HA, having previously used Openhab. I have a heatmiser setup, with 15 PRT-N stats and an Ethernet - RS485 adaptor. This worked Ok with Openhab and I am now trying to use the Heatmiser component in HA.
When I tried the standard component, I too got the error at the top of this thread, i.e.
TypeError: unsupported operand type(s) for >>: 'str' and 'int'

I'd like to try your customised component - can i just grab your component and put it in the custom components folder in config? Is there anything else I need to copy over? I'm using HA 0.95.0

Thanks for you help
Nigel

@NigelCoxon Hi I’ll sort it out for you later today, I’m on version 92 of HA not tested it on the latest build, its lost traction as i was informed they are rebuilding the structure of climate component for HA

I’ve been pretty busy so not had much chance to get this aligned with the
fast pace of HA over the last 18 months.

I do want to get back into it - so once the API has stabilised for climate;
I’ll give it another big push.

On Sat, 6 Jul 2019 at 11:14, Brett notifications@github.com wrote:

@NigelCoxon https://github.com/NigelCoxon Hi I’ll sort it out for you
later today, I’m on version 92 of HA not tested it on the latest build, its
lost traction as i was informed they are rebuilding the structure of
climate component for HA


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/home-assistant/home-assistant/issues/13146?email_source=notifications&email_token=AAKY335Y3AM5N3PAPQV3LVLP6BWABA5CNFSM4EU5TM3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZKWV6I#issuecomment-508914425,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAKY333Q53J46ZOE7CZBRKDP6BWABANCNFSM4EU5TM3A
.

Hi @andylockran, just wondering whether a fix for this is still in progress or whether you have had chance to review the broken integration yet? I'm currently getting the issues outlined in #25807 aswell and would love for this to be functional with the latest version of HA.
Cheers

Hi @andylockran: I have 13 heatmiser neo's (7 years old, 230V wireless). Can your component be used with these as they don't have (or i don't know where to find) their ID's?

Hi @andylockran: I have 13 heatmiser neo's (7 years old, 230V wireless). Can your component be used with these as they don't have (or i don't know where to find) their ID's?

I would also like to know this also, i have two heatmiser neo wireless stats with the neohub. I cannot get this integration to work with my hardware, is it possible to have a sample config along with the port i should be using please?

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates.
Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍
This issue now has been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Gio76 picture Gio76  ·  223Comments

grantalewis picture grantalewis  ·  145Comments

abouelric picture abouelric  ·  165Comments

Ciqsky picture Ciqsky  ·  129Comments

neotrunks picture neotrunks  ·  169Comments