2021.4: For our advanced users ❤️

How long do anayltics take to show up online? There were four installations in NZ, I enabled analytics, restarted HA; reloaded the analytics page (with a cache clear) and there are still four in NZ.

Focus your cursor where you want the id. Then type ‘gen’ in the command box and you should see a generate uuid command in the list of available options. Click it.

Normally every hour, but there is an update issue currently.

I don’t think you understand what this project is about. It is free for a reason. People use their spare time to develop this (except the Nabu Casa folks). You seem to take this for granted when you are calling other people’s work suboptimal. People do there best in the limited time they have to contribute to this project. If you have time to write and complain, you certainly also have time to contribute to the project. It is a two way street.

6 Likes

try this:

  - platform: mqtt
    name: "Master Bedroom Fan"
    command_topic: "cmnd/iFan03-2/FanSpeed"
    state_topic: "stat/iFan03-2/RESULT"
    state_value_template: >
      {% if value_json.FanSpeed is defined %}
        {% if value_json.FanSpeed == 0 -%}off{%- elif value_json.FanSpeed > 0 -%}on{%- endif %}
      {% else %}
        {% if states.fan.master_bedroom_fan.state == 'off' -%}off{%- elif states.fan.master_bedroom_fan.state == 'on' -%}on{%- endif %}
      {% endif %}
    availability_topic: tele/iFan03-2/LWT
    payload_off: "off"
    payload_on: "on"
    payload_available: Online
    payload_not_available: Offline
    percentage_command_template: >
      {% if value == 33 %}
        1
      {% elif value == 67 %}
        2
      {% elif value == 100 %}
        3
      {% else %}
        0 
      {% endif %}
    percentage_command_topic: "cmnd/iFan03-2/FanSpeed"
    percentage_state_topic: "stat/iFan03-2/RESULT"
    percentage_value_template: >
      {% if value_json.FanSpeed == 1 %}
        33
      {% elif value_json.FanSpeed == 2 %}
        67
      {% elif value_json.FanSpeed == 3 %}
        100
      {% else %}
        0
      {% endif %}

it seems to be working except I can’t figure out how to limit the step stops in the speed slider for the pop up to be only three steps.

Right now it has steps of 1% instead of 33%.

Does anyone know how to define how many speeds there are for the mqtt fan?

That doesn’t seem to be an option like it is for the template fan.

15min after startup, and every 24h after that (and when you change reporting prefrences)

is what Ludeeus said in the beta chat.

Thanks for the update, Homekit was broken for me and then I found that the port has recently, actually today, changed and I guess that’s the reason why it didn’t make it into the breaking changes.

Can someone please update the breaking changes for Homekit? It might help some people.
Info: https://github.com/home-assistant/core/pull/47491

The site updates hourly Nick

Around 45 seconds

I understand very well what this is project is about. Not the first nor the last open source community driven one over the world. There are code contributors and users.
The devs use their free time for development because they decided so. Likely they love this work for various reasons.
Users use product of their work also providing feedback. It is something normal and expected. Wonder what you not understand in it.

The fact that the work is done in free time doesn’t mean that feedback may not contain issues description. Also it doesn’t mean that users must contribute to the code if they want to point to lacks (which is taken as negative attitude obviously)

Please be so kind not telling me what I have to do in my free time. You are not entitled to so. In some circles it may be even cosidered to be bad behaviour.

1 Like

How do we find the version of OS, HA and latest version available now ?

Since the upgrade to 2021.4.0 I can’t see any of these sensors/entities.

I read there was a supervisor integration but I can’t see this neither

Thanks

Martyn

Supervisor should automatically be available in your integrations page, no need to install it’ll just be on this page:

Open your Home Assistant instance and show your integrations.

EDIT: This is only available if you are on HassOS or Supervised installs.

1 Like

Regarding the Analytics, I am running Home Assistant Core in a Docker container. Is my install counted under “Core” or “Container”?

What does it say in Configuration / Info ?

I am seeing a similar error, but in my case it is an error (not a warning) and I do know exactly which sensors are impacted, but I cannot figure out what changed with the way the RESTful sensors are being processed.

It seems to be a change with the RESTful integration, because I see this error …

JSON result was not a dictionary or list with 0th element a dictionary
5:07:33 PM – RESTful (WARNING) - message first occurred at 5:07:33 PM and shows up 40 times

It shows up 40 times because I have built 40 sensors. I then see this error related to the value_template of each sensor…

Template variable error: 'dict object' has no attribute 'forecasts' when rendering '{{ value_json.forecasts.tides.days[8].entries[3].type }}: {{ value_json.forecasts.tides.days[8].entries[3].dateTime|as_timestamp|timestamp_custom('%I:%M %p') }}'

5:07:33 PM – helpers/template.py (ERROR) - message first occurred at 5:07:33 PM and shows up 40 times

… which seems to follow the first error … I am reasoning there is no dict object (for some reason?) and therefore the template cannot find the attributes of that object.

All I can say is Thank you, Thank you, Thank you! The new troubleshooting history for automations is AMAZING. I recently migrated all my automations from node-red to home assistant, and diagnostics and troubleshooting were the one thing I really missed. This not only matches what was available there, but exceeds it.
Thank you again!

6 Likes

Supervisor should automatically be available in your integrations page, no need to install it’ll just be on this page: Open your Home Assistant instance and show your integrations.

I found it myself, but for some weird reason I can’t use that “my” link, it asks if I want to open the page in my home assistant, but when I click “open link” I get a 404 error?

1 Like

You need to setup my home assistant.

It says “Home Assistant Container”… that answers my question, obviously. Thank you!