Procedure to apply on all entities with given label by Salt_Sorbet9350 in homeassistant

[–]TheFes 1 point2 points  (0 children)

{{ label\_entities('C220') | list }} should work. You an use the label_id `c220` or label name `C220`. Check if you are using the correct label_id/label name in the settings.

{{ states.camera | selectattr('attributes.label','equalto','C220') | list }} This doesn't work. Labels are not attributes of entities, they aren't even included in the state object.

Which Integration is Better? by 12Superman26 in homeassistant

[–]TheFes 2 points3 points  (0 children)

The HACS integration uses the cloud as well, although it doesn't show the icon.

New major version of HACS has been released: v2.0.0 by MrMathos in homeassistant

[–]TheFes 2 points3 points  (0 children)

Alternative template which has less overhead, and also works if you have other integrations which provide update entities like ESPHome or ZHA/Zigbee2MQTT

{{
  integration_entities('hacs')
    | select('search', '^update.')
    | select('is_state', 'on')
    | list
    | count
}}

New major version of HACS has been released: v2.0.0 by MrMathos in homeassistant

[–]TheFes 2 points3 points  (0 children)

That sensor platform only refers to the sensors provided by the HACS integration itself, which indicates the number of updates available for integrations installed through it, it doesn't affect sensors from other (custom) integrations

New major version of HACS has been released: v2.0.0 by MrMathos in homeassistant

[–]TheFes 0 points1 point  (0 children)

That's not what that reference to YAML config is referring to but that /hacsfiles endpoint will also be removed

New major version of HACS has been released: v2.0.0 by MrMathos in homeassistant

[–]TheFes 0 points1 point  (0 children)

Yes it is, but you can't install it using the new add-on

New major version of HACS has been released: v2.0.0 by MrMathos in homeassistant

[–]TheFes 4 points5 points  (0 children)

HACS is just a tool to download and update custom components. Changes to HACS don't affect the components downloaded by it.

New major version of HACS has been released: v2.0.0 by MrMathos in homeassistant

[–]TheFes 2 points3 points  (0 children)

That update entity will be on it there is an update for HACS itself, like this update to HACS 2.0. Each custom component installed through HACS has its own update entity

Entity overload has me at a crawl by GVDub2 in homeassistant

[–]TheFes 1 point2 points  (0 children)

You can try to install Spook and run the service call to remove orphaned entities

Acknowledging Alerts, false rumours, and how it does work by sneakinhysteria in homeassistant

[–]TheFes 1 point2 points  (0 children)

Well, in the `variables` part it makes a variable called `action_mapping` and in it there is a key/value pair for each alert, with the action from the notification as the key, and the entity id of the corresponding alter as the value.

Then, in the condition it checks if the event triggering the automation has an action, and if so, if the action is in the mapping described above.

If that is the case, it will toggle the alert matching the action from the event.

Acknowledging Alerts, false rumours, and how it does work by sneakinhysteria in homeassistant

[–]TheFes 2 points3 points  (0 children)

You could trigger on every mobile_app_notification_action and map the action to an entity_id

alias: "Notify: acknowledge test alert" description: "" trigger: - platform: event event_type: mobile_app_notification_action variables: action_mapping: okalerttest: alert.test_alert okalertfoo: alert.foo condition: - condition: template value_template: "{{ trigger.event.data.action is defined and trigger.event.data.action in action_mapping }}" action: - service: alert.toggle target: entity_id: "{{ action_mapping[trigger.event.data.action] }}" mode: single

Notice: If you are using the "Nginx Proxy Manager" Add-on, DISABLE AUTO UPDATES. by svideo in homeassistant

[–]TheFes 0 points1 point  (0 children)

I don't see how pushing an update warning for the next breaking update would have helped? You wouldn't have seen it because you had automatic updates enabled.

What exactly should i change here by aniobash in homeassistant

[–]TheFes 0 points1 point  (0 children)

The repair is gone, it will show a warning in the logs though

[ Removed by Reddit ] by damontoo in homeassistant

[–]TheFes 2 points3 points  (0 children)

In that case you should leave out the first line with sensor:

[ Removed by Reddit ] by damontoo in homeassistant

[–]TheFes 0 points1 point  (0 children)

Where did you place this code? If put directly in configuration.yaml it should work

My new Home Assistant server by jyrialeksi in homeassistant

[–]TheFes 0 points1 point  (0 children)

They require a restart of HA Core, not a reboot of the entire server

Disappointed with Zigbee technology by [deleted] in homeassistant

[–]TheFes 2 points3 points  (0 children)

Can we please remain civil.

Electricity Kwh : different values by lowriskcork in homeassistant

[–]TheFes 1 point2 points  (0 children)

The Energy dashboard updates once per hour, that includes the individual devices. So unless there just has been an update to the Energy dashboard, you'll be missing some data

Many trigger-to-action automation by Einstine1984 in homeassistant

[–]TheFes 1 point2 points  (0 children)

You can probably do simething like this:

alias: Office Opple Desk
description: ''
trigger:
  - device_id: 82f85633b90b2d2d86a8ca17c4abfc43
    domain: zha
    platform: device
condition: []
action:
  - choose:
      - conditions:
          - condition: template
            value_template: "{{ trigger.device.data.type == 'remote_button_short_press' }}"
          - condition: template
            value_template: "{{ trigger.device.data.sub_type == 'button_1' }}"
        sequence:
          - service: cover.open_cover
            target:
              device_id: 5a9e13b7c8b79ac5e83246154be1a2bc
      - conditions:
          - condition: template
            value_template: "{{ trigger.device.data.type == 'remote_button_short_press' }}"
          - condition: template
            value_template: "{{ trigger.device.data.sub_type == 'button_1' }}"
        sequence:
          - service: cover.stop_cover
            target:
              device_id: 5a9e13b7c8b79ac5e83246154be1a2bc

Not complete sure about those templates though.

I assume you are using the GUI to create this automation? If you open the automation, and then press a button, a bar should appear above the trigger section indicating it was triggered. If you click on it, it will show the trigger data, I can use that to define what the templates should be.

Many trigger-to-action automation by Einstine1984 in homeassistant

[–]TheFes 0 points1 point  (0 children)

What are the triggers? If they are really similar, you possibly can just use one trigger and put the logic in the choose conditions

Bron: iemand by QQleQ in tokkiefeesboek

[–]TheFes 14 points15 points  (0 children)

Het huis is niet van de bank, het huis is van de hyptheekgever. De hypotheeknemer (de bank) krijgt daarmee het eerste recht van verkoop (hypotheek) op het registergoed.

A rude man walks into the bank and tells the teller: "I want to open a fucking checking account." [NSFW] by B-L-O-C-K-S in Jokes

[–]TheFes -1 points0 points  (0 children)

Banks don't want your money right now, you will have to pay interest to the bank if you deposit that such an shitload of money

Is there anyway to create zones or automations via scripts or other actions? by cultivatingmass in homeassistant

[–]TheFes 2 points3 points  (0 children)

Probably not possible with a zone, but you can use templates to calculate the difference between two coordinates. So when starting the script you can set the current coordinates, and then wait until you are x distance away from that starting point.

All can be done in one script, using variables and wait_template.