Giter Club home page Giter Club logo

Comments (5)

asantaga avatar asantaga commented on June 12, 2024

thanks this, im travelling for work at the moment. Does sound like this may have changed or currentSetPoint was the wrong one to use in the first place.

I'll dive deeper soon

from wiserhomeassistantplatform.

mrvladis avatar mrvladis commented on June 12, 2024

I can definitely say that nothing has changed.

CurrentSetPoint - is the temperature that is currently set for the room as target. It can be equal to scheduled, to override or to away temperature.

ScheduledSetPoint - would always represent what temperature is currently set in schedule.

from wiserhomeassistantplatform.

Fulch avatar Fulch commented on June 12, 2024

Observed this different behaviour myself for the first time this evening when Eco mode switched on.

Pretty sure the firmware version number on all of my TRV's and the Roomstat has changed within the last few days to '42002', think it was previously something like '36001'.
Hub is on firmware '2.44.0' but I'm not sure if that has changed or not.

from wiserhomeassistantplatform.

scooper1 avatar scooper1 commented on June 12, 2024

from wiserhomeassistantplatform.

asantaga avatar asantaga commented on June 12, 2024

This is now fixed in PR#54

Fix was in climate.py

@property
    def target_temperature(self):
        target = (
            self.handler.get_hub_data()
            .getRoom(self.roomId)
            .get("CurrentSetPoint")
            / 10
        )

to

    @property
    def target_temperature(self):
        target = (
            self.data.wiserhub
            .getRoom(self.room_id)
            .get("DisplayedSetPoint")
            / 10
        )

Be released in R1.9, currently in dev

from wiserhomeassistantplatform.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.