Git Product home page Git Product logo

Comments (36)

wurmtal868 avatar wurmtal868 commented on July 18, 2024 1

I'm asking because in my multi-split AC the demand settings of the individual indoor units interfere with each other. The indoor with the lowest setting can limit the heat output from the outdoor unit even if indoor unit is in standby. The Daikin cloud does it's own mess up by pushing "demand" values unidirectional. So I just want to make sure that demand was changed on purpose and not by accident. If the indoor units have still access to the cloud, I recommend turning off the demand setting in the Onecta app for each unit.

from esp32-faikin.

revk avatar revk commented on July 18, 2024

There are some other debug logs that you can get that may explain it.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

If I just add increase my BLE-target temp by 0.5 it behaves normal again by adjusting the daikin temp to 28
Maybe that gives an idea?

I would expect the heating to be slowed down only if the BLE-temp has reached 19 but not already when going beyond 18.5

from esp32-faikin.

revk avatar revk commented on July 18, 2024

Yeh I suspect you need the debug enabled to show what it is playing at. It is close so may be predicting it going in to range.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

I have enabled the debug so where do I find the data? on mqtt?

from esp32-faikin.

revk avatar revk commented on July 18, 2024

Yeh MQTT should show all sorts. One status should have "approaching" and "beyond" and stuff in it.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

As you can see... it does not stay to high daikin target temps long enough to do something about the temp changes in the room. Was there any change in last betas?
image

from esp32-faikin.

revk avatar revk commented on July 18, 2024

Nothing radical, well not that should have been.

Worth double checking the settings in the new "advanced" tab.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

{"hot":true,"approaching":52,"beyond":0,"samples":400,"period":600,"temp":18.63,"min":18.50,"max":20.00}
(i have set switchtemp to 0.5 again as another unit is doing it fine with these settings)

The approaching seems to behave not correctly or?
Why is samples = 400 ? I do see samples = 1200 on my other faikins

from esp32-faikin.

revk avatar revk commented on July 18, 2024

I can double check the code and maybe add more clarity to that report. Worth watching for a bit and seeing it it makes any more sense.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

Just added 0.5 to the BLE-target (19.5 now) and immediately temps do increase to 28 on daikin-target (as expected)
{"hot":true,"approaching":93,"beyond":0,"samples":518,"period":600,"temp":18.66,"min":19.00,"max":20.50}

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

now the automation looks fine (samples etc)
{"hot":true,"approaching":1200,"beyond":0,"samples":1200,"period":600,"temp":18.74,"min":19.00,"max":20.50}

from esp32-faikin.

miniluma avatar miniluma commented on July 18, 2024

Just added 0.5 to the BLE-target (19.5 now) and immediately temps do increase to 28 on daikin-target (as expected) {"hot":true,"approaching":93,"beyond":0,"samples":518,"period":600,"temp":18.66,"min":19.00,"max":20.50}

Obviously, you changed the "mode" and gave it a push. In your previous data, temp was above min, now it's below.

from esp32-faikin.

revk avatar revk commented on July 18, 2024

I have found one issue with coolback/coolover may have been wrongly applied, given the defaults this would not have made any difference, but without the defaults, e.g. 0, this might matter. Latest beta fixes.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

Could you check why this is being seen as beyond?
BLE temp is set to 19.5. I would assume that beyond is only when its above temp-max (20)?
Why does it consider 18.75 as beyond? Its not even in te range of 19 to 20 already

{"hot":true,"approaching":569,"beyond":12,"initial-samples":600,"period":600,"temp":18.75,"min":19.00,"max":20.00}

from esp32-faikin.

revk avatar revk commented on July 18, 2024

It uses prediction of temp, and if it is going up it can predict as beyond.

Also that is temp now but beyond, etc, relates to the last 600 seconds.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

ok got it. so that means in the last period it was 12 seconds beyond and 569 in approaching?

from esp32-faikin.

revk avatar revk commented on July 18, 2024

Yes

from esp32-faikin.

revk avatar revk commented on July 18, 2024

Are we any better with latest beta?

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

I am not really sure and will monitor a little more
{"hot":true,"approaching":954,"beyond":0,"samples":1200,"period":600,"temp":19.02,"min":19.00,"max":20.00}
and still targetting with daikin temp = 29

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

still the same for me. when the min temp is reached the faikin does lower the target daikin-temp too much
{"hot":true,"approaching":963,"beyond":2,"samples":1200,"period":600,"temp":18.88,"min":19.00,"max":20.00}
{"hot":true,"approaching":485,"beyond":0,"initial-samples":600,"period":600,"temp":19.06,"min":19.00,"max":20.00}

target is still 19.5
but just now it has reached 19.05 (BLE) and now faikin only heats with daikin-target of 19.5 which is too low
as home is already 22.5. So this means it will go down on temps now although it only reached the min temp

image

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

why does it stop heating on reaching the min temp only?
It needs to heat until 19.5 and then try to keep this temp coz thats my target.

from esp32-faikin.

revk avatar revk commented on July 18, 2024

Sorry the logic is to aim for the window, reaching min is good enough. There is a thermostat mode now that aims for max and then cools to min. Try that.

from esp32-faikin.

miniluma avatar miniluma commented on July 18, 2024

why does it stop heating on reaching the min temp only? It needs to heat until 19.5 and then try to keep this temp coz thats my target.

Please try modifying heatback. Just to see what happens.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

Sorry the logic is to aim for the window, reaching min is good enough. There is a thermostat mode now that aims for max and then cools to min. Try that.

The thermostat toggle on the advanced Page?

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

why does it stop heating on reaching the min temp only? It needs to heat until 19.5 and then try to keep this temp coz thats my target.

Please try modifying heatback. Just to see what happens.

Heatback? Thats the lowering Temp once it has reached the target Window Not sure why this should Do anything other than cooling down

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

Changed it to this now
tpredictt":0,"tmin":10,"switchtemp":0,"pushtemp":0,"heatback":6,"heatover":6,"coolback":6,"coolover":6,"tmax":31,"tsample":900

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

and will check on thermostat mode.
stay tuned tommorrow :-)

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

@revk
Could there be a mode in faikin where I only use the BLE temp for the daikin algorithm? Something like faikin-no-auto mode but still use the BLE-temp
e.g. replacing the Home-temp with the BLE-temp so that the Daikin only sees the BLE Temp as Home-temp?
Does that make sense?

from esp32-faikin.

revk avatar revk commented on July 18, 2024

There is no way to send an external reference to the Daikin, sorry. If I could, yes, that would be great.

from esp32-faikin.

wurmtal868 avatar wurmtal868 commented on July 18, 2024

@turbolooser
Did you change the "demand" slider on purpose or is your "Wohnzimmer" part of a Multi-Split AC?

from esp32-faikin.

revk avatar revk commented on July 18, 2024

I change range and steps, what do you need, I can change or make a setting.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

@turbolooser Did you change the "demand" slider on purpose or is your "Wohnzimmer" part of a Multi-Split AC?

I have only 1 multisplit with 3 inside units and Wohnzimmer is Part of that

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

I know about this behaviour and change the demand control using ha for all units the same

from esp32-faikin.

wurmtal868 avatar wurmtal868 commented on July 18, 2024

Thanks,
I did not know that this can now be controlled via HA.
Last time I checked it was only available via MQTT and I started learning Node-Red to use it.

from esp32-faikin.

turbolooser avatar turbolooser commented on July 18, 2024

Thanks, I did not know that this can now be controlled via HA. Last time I checked it was only available via MQTT and I started learning Node-Red to use it.

I am still setting demand control using the altherma hacs addon

from esp32-faikin.

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.