Giter VIP home page Giter VIP logo

Comments (20)

ualex73 avatar ualex73 commented on June 9, 2024 2

Ok, I also updated my ualex73/toon_climate with the presets ;-) So people can choose which person they want to use, until Ron's back from his holiday.

from home-assistant-custom-components.

pdwonline avatar pdwonline commented on June 9, 2024 2

I use the burnerInfo by including this in my config:

  - platform: rest
    name: toon_burnerinfo
    resource: http://<toonIP>:10080/happ_thermstat?action=getThermostatInfo
    value_template: '{{ value_json.burnerInfo }}'

from home-assistant-custom-components.

ualex73 avatar ualex73 commented on June 9, 2024 1

It is NOT a fix, but I made a few small changes to the "climate.py", now it will show up in the GUI ... Only the mode doesn't work yet, the list is empty ... The hack can be downloaded via: https://github.com/ualex73/toon_climate

from home-assistant-custom-components.

arcidodo avatar arcidodo commented on June 9, 2024

same problem here!

from home-assistant-custom-components.

ualex73 avatar ualex73 commented on June 9, 2024

@Tuncay-Ayhan The errors seem to come from the "toon_boilerstatus" component, not from the "toon_climate". But yes, the "toon_climate" doesn't load here either.

BTW - if you remove "SUPPORT_OPERATION_MODE" from the "climate.py" file, you get proper errors 👍

from home-assistant-custom-components.

cyberjunky avatar cyberjunky commented on June 9, 2024

from home-assistant-custom-components.

wwolkers avatar wwolkers commented on June 9, 2024

I created a pull request which fixes more things already, needs to be tested more, but it seems to work here from a quick 15 min test :)
#38

from home-assistant-custom-components.

ualex73 avatar ualex73 commented on June 9, 2024

@wwolkers you should rename "set_operation_mode" to "set_preset_mode" with mode=-1 as default ... then it is near perfect ;-)

from home-assistant-custom-components.

Tuncay-Ayhan avatar Tuncay-Ayhan commented on June 9, 2024

@wwolkers you should rename "set_operation_mode" to "set_preset_mode" with mode=-1 as default ... then it is near perfect ;-)

I did this and it worked for me after that. Can't see any weird things except it's working again?

from home-assistant-custom-components.

ualex73 avatar ualex73 commented on June 9, 2024

The present "None" should go away with 0.96.3:
Introduce PRESET_NONE for climate (@balloob - #25360)

from home-assistant-custom-components.

Dennisd80 avatar Dennisd80 commented on June 9, 2024

Thx for the quick fix guys, almost works 100% . But i'm missing the attribute burner_info. For me it's a important one so i can trigger stuff when detecting running my hot water tap (shower). Could somebody point me in te right direction?

from home-assistant-custom-components.

ualex73 avatar ualex73 commented on June 9, 2024

@Dennisd80 There is no burner information in thermostat component. So this seems a feature request? Also the tap isn't reliable, because it also shows up on my Toon, when it is pre-heating the water. I use a ESP8266 with DS18B20 to detect this.

from home-assistant-custom-components.

Dennisd80 avatar Dennisd80 commented on June 9, 2024

Weird thing tho, it was working prior to the update to 0.96. But probably the best route would be the ds18b20.

from home-assistant-custom-components.

wwolkers avatar wwolkers commented on June 9, 2024

well actually there does seem to be burner info in the info toon gives us:

{"result":"ok", "currentTemp":"2851", "currentSetpoint":"1000", "currentInternalBoilerSetpoint":"6", "programState":"1", "activeState":"0", "nextProgram":"1", "nextState":"2", "nextTime":"1563915600","nextSetpoint":"1000","randomConfigId":"1804289383","errorFound":"255","connection":"0","burnerInfo":"0","otCommError":"0","currentModulationLevel":"0"}

it was never included in the plugin, so would be a feature request. should not be too hard to include though.

from home-assistant-custom-components.

ualex73 avatar ualex73 commented on June 9, 2024

@wwolkers yes it is in the json output, but I never saw it mapped in the climate component of HA.

from home-assistant-custom-components.

Dennisd80 avatar Dennisd80 commented on June 9, 2024

My bad, it was included in the toon Google compenent

from home-assistant-custom-components.

Dennisd80 avatar Dennisd80 commented on June 9, 2024

@pdwonline : thx, I already copied parts from the toon_google and incorporated it in the "new" toon_climate. But i'm gonna use your rest sensor.

from home-assistant-custom-components.

kurniawan77 avatar kurniawan77 commented on June 9, 2024

Ok, I also updated my ualex73/toon_climate with the presets ;-) So people can choose which person they want to use, until Ron's back from his holiday.

Great job with the presets. I use 'Holiday' when the winter has past. Actually this isn't a preset but more an 'off' mode. I personally think it's best to use 'Holiday' as HVAC_MODE_OFF.

I use the burnerInfo by including this in my config:

  - platform: rest
    name: toon_burnerinfo
    resource: http://<toonIP>:10080/happ_thermstat?action=getThermostatInfo
    value_template: '{{ value_json.burnerInfo }}'

Would be a nice implementation.

from home-assistant-custom-components.

cyberjunky avatar cyberjunky commented on June 9, 2024

I have updated the component under home-assistant-custom-components/toon_climate/
Can you all have a look/test?
I have implemented on/off by enable/disable schedule on/off like from pull request #36
But manual set temp is then still active, maybe have to change it to Vacation mode as suggested.
Also testing with Google assistant has to be done.
Attributes burner_info and modulation level are added, you can use them as sensors like so:

 - platform: template
    sensors:
      toon_burner_info:
        friendly_name: 'Ketel Driewegklep'
        value_template: >-
          {% if is_state_attr('climate.toon','burner_info', 0) %}
             Neutraal
          {% elif is_state_attr('climate.toon','burner_info', 1) %}
             CV
          {% elif is_state_attr('climate.toon','burner_info', 2) %}
             Warm Water
          {% else %}
             Onbekend
          {% endif %}
      toon_modulation_level:
        friendly_name: 'Brander Modulatie'
        value_template: "{{ states.climate.toon.attributes.modulation_level }}"

from home-assistant-custom-components.

Fietspomp86 avatar Fietspomp86 commented on June 9, 2024

Works fine here, just updated it!
Thanks a lot for this. Using HA 0.97

I don't use Google Assistant though.
But controlling Toon works as it should as far as I can see.

from home-assistant-custom-components.

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.