Quantcast
Channel: Configuration - Home Assistant Community
Viewing all 108449 articles
Browse latest View live

Group of Lights - State Attributes

$
0
0

@bigverm23 wrote:

first time user here: I configured groups in the groups.yaml, yet I dont see any documentation on how to set the attributes of said group via a scene.

If I check the States from Developer, the groups created show no attributes, yet the individual lights are all rgb.

Am I missing something?

Posts: 4

Participants: 3

Read full topic


Netgear not updating status anymore

$
0
0

@Ralph_Bisschops wrote:

Hi All,
Today I upgraded Home Assistant to 105.3 (coming from 103.x). Now al the network devices I monitor via my netgear router are not updating status anymore. This concerns both tracked phones as well as hard wired IP devices. No changes to the config was made or to the know_devices.yaml, I read somethings about know_devices.yaml on the forum, but its unclear to me.

Any suggestions anyone.

Thanks in advance,

Ralph

Posts: 6

Participants: 2

Read full topic

HA - RPI 3+ - Bluetooth not seeing iPhone?

$
0
0

@steadi wrote:

Hey,

Setup: Home Assistant on RPI 3+. HA Core 0.104.3 and OS 3.7.

Trying to set up bluetooth as device tracker. HA has found my wife’s Android phone, but what it has not managed to find is my iPhone SE.

Per the Hass.io website, I’ve used this code in my configuration.yaml:

device_tracker:
- platform: bluetooth_tracker

I have received the following error message:
“See service not supported by [my iPhone name]”.

What am I doing wrong?

I am using the HA app on the iPhone. From what I can read, my issue may have something to do with this?

Posts: 4

Participants: 2

Read full topic

Node-Red, MQTT output is giving {"Command":"Unknown"} error. Please help

$
0
0

@rasi wrote:

I’m using Node-Red in Hass.io to deliver an MQTT output to turn on a switch, but I am pulling my hair out trying to get this to work. My flow looks like this.

My MQTT output switch is configured as follows:

Server: 192.168.1.20
Topic: cmnd/switch_mjswitch2
QoS : blank
Retain: true
Name: blank

I am using an inject node to test it, by injecting a msg.payload of “On”, “on”, or “ON”, or “Power 1” but no matter what I do, I cannot get the command to pass onto the MQTT client. The node shows as “Connected” (so I am assuming that means it is connected successfully to the broker).

When I look on the client console, I am seeing

18:30:28 MQT: stat/switch_mjswitch2/RESULT = {“Command”:“Unknown”}

Everytime I inject a message, but the device doesn’t respond. I can turn on and off the light from the MQTT console, and I can also do so by calling the service “switch.switch_mjswitch2” directly from home assistant.

Does anyone have a clue where I might be going wrong?

Posts: 1

Participants: 1

Read full topic

Alexa webhook - disablke newly added entities?

Implementing mobile_app notifications - suggestions welcome

$
0
0

@SteveDinn wrote:

I’m interested in moving my notifications to the android app platform. I want to be able to take advantage of the actionable actions that actually show up in the notifications!

My dream is to have a situation like this: send a sticky notification when the garage door opens (similar to the example), and then have the stick notifications cleared when the garage door is closed, either by the notification action or by the other, normal means. This seems possible, but I don’t want to have to have two calls to two notify services (for my wife’s phone and my phone), and have the same actions for both because I see myself repeating this pattern at least a few times, and I abhor copying and pasting if there’s a better way.

I tried creating a notify group that has both our devices in it. But when creating a notification that used some actions, I found I couldn’t because the notify group won’t accept all the parameters that the mobile app notify services will. I know the ability to pass arbitrary fields was taken out from most services, and this is great where it makes sense or is otherwise not limiting, but it seems like notify groups are not one of those situations.

I also tried using a script that just called the notify services for both our phones, but then I found that I had no way to pass the array of actions through the script and to the notify services in a way that they could use it.

Is there a way to do what I’m trying, or is this a lost cause?

Posts: 1

Participants: 1

Read full topic

Broadlink RM Mini 3 - double button press issue

$
0
0

@dontpanic wrote:

Hi, I have an RM Mini3 which is working for most things. I have a remote for my TV motorised mount and in order to use the remembered positions you have to press 2 buttons on the remote - example press 1 then OK.

but the code is not captured. Both broadlink manager application and the HA service broadlink.learn do the same thing. They will capture the single button presses from this remote, but not this double one. The light on the mini goes on for learning mode, but then it just times out with no code being captured. HA service reports “no signal received”

Any suggestions please?

thanks

Posts: 1

Participants: 1

Read full topic

Telstra Home - Zigbee Devices


Two lights automation – IF/ELSE problem

$
0
0

@Fialad wrote:

Hi,
I have a hallway with two lights, one for day and other for night.
I have two automations that watch for either of the lights to turn ON.
Conditions determine what time of day it is, maybe look at the outside illumination levels and decide which light of the two to turn on.

My problem is determining in the action part if the correct light is already ON.
If so, I would turn both OFF, else I would turn ON just the right one.

I could split this into four automations and use conditions to determine this, but why if it can and should be determined in a simple IF ELSE statement in the action part.

This is the scheme:

Hallway Lights – Night

Trigger: Hallway OFF=>ON
Conditions: TIME 22:00–6:00 OR (TIME 15:00–22:00 AND Ilumination<500)
Action: IF (Hallway_Night==ON) THEN (Hallway=>OFF AND Hallway_Night=>OFF)
        ELSE (Hallway=>OFF AND Hallway_Night=>ON)


Hallway Lights – Day

Trigger: Hallway_Night OFF=>ON
Conditions: TIME 6:00–15:00 OR (TIME 15:00–6:00 AND Ilumination>500)
Action: IF (Hallway==ON) THEN (Hallway=>OFF AND Hallway_Night=>OFF)
        ELSE (Hallway=>ON AND Hallway_Night=>OFF)

And this is one of the automations working except I cannot figure out the action part with IF ELSE.
Note the action part of the code is just my intention – not an actual code I am trying.

- id: '1581701805691'
  alias: Hallway lights – night
  description: Use the night hallway light at night automatically
  trigger:
  - entity_id: light.hallway
    from: 'off'
    platform: state
    to: 'on'
  condition:
  - condition: or
    conditions:
    - after: '22:00'
      before: '6:00'
      condition: time
    - condition: and
      conditions:
      - after: '15:00'
        before: '22:00'
        condition: time
      - below: '500'
        condition: numeric_state
        entity_id: sensor.outside_ambient_light
  action:

IF ( light.hallway_night == ON ) { light.hallway => OFF, light.hallway_night => OFF  }
ELSE { light.hallway => OFF, light.hallway_night => ON  }

Posts: 6

Participants: 2

Read full topic

Adding nodes to node-red on homeassistant?

$
0
0

@papa4narchia wrote:

Hi,
can someone explain to me, how I can add custom nodes to node-red on homeassistant?

I would like to use node-red-light-contrib as pointed out here and its supposed to be installed via
npm install node-red-contrib-light

How can I install custom node-red nodes on homeassistant?

Cheers

Posts: 2

Participants: 2

Read full topic

Script for Hue scene

$
0
0

@miclass wrote:

Hi,

I am just going mad trying to create a script to use Hue Scene.
It’s very simple, I have a room named “Studio” and a scene in Hue named “due”. I am 100% sure of this as I checked in the Hue app, the names are correct.

I have written the following script:

script:
  due_on:
    sequence:
      - service: hue.hue_activate_scene
        data:
          group_name: "Studio"
          scene_name: "due"

And I get the following error:

Invalid config for [script]: [due_on] is an invalid option for [script]. Check: script->script->script->due_on. (See /config/configuration.yaml, line 14).

Any hints?

Thank you!
Ciao.

Posts: 3

Participants: 2

Read full topic

Update 105.4 ps4/adg problem

$
0
0

@neuron wrote:

ps4:

2020-02-15 16:54:14 ERROR (MainThread) [aiohttp.server] Error handling request
Traceback (most recent call last):
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/aiohttp/web_protocol.py", line 418, in start
    resp = await task
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/aiohttp/web_app.py", line 458, in _handle
    resp = await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/aiohttp/web_middlewares.py", line 119, in impl
    return await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/real_ip.py", line 39, in real_ip_middleware
    return await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/ban.py", line 72, in ban_middleware
    return await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/auth.py", line 135, in auth_middleware
    return await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/view.py", line 123, in handle
    result = await result
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/config/config_entries.py", line 160, in post
    return await super().post(request, flow_id)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/data_validator.py", line 50, in wrapper
    result = await method(view, request, *args, **kwargs)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/helpers/data_entry_flow.py", line 89, in post
    result = await self._flow_mgr.async_configure(flow_id, data)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/data_entry_flow.py", line 130, in async_configure
    result = await self._async_handle_step(flow, cur_step["step_id"], user_input)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/data_entry_flow.py", line 172, in _async_handle_step
    result: Dict = await getattr(flow, method)(user_input)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/ps4/config_flow.py", line 70, in async_step_creds
    self.creds = await self.hass.async_add_executor_job(
  File "/usr/local/lib/python3.8/concurrent/futures/thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/pyps4_2ndscreen/helpers.py", line 79, in get_creds
    credentials = Credentials(device_name)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/pyps4_2ndscreen/credential.py", line 43, in __init__
    self.start()
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/pyps4_2ndscreen/credential.py", line 54, in start
    sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
OSError: [Errno 92] Protocol not available

adguard home

2020-02-15 17:04:36 ERROR (MainThread) [aiohttp.server] Error handling request
Traceback (most recent call last):
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/aiohttp/web_protocol.py", line 418, in start
    resp = await task
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/aiohttp/web_app.py", line 458, in _handle
    resp = await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/aiohttp/web_middlewares.py", line 119, in impl
    return await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/real_ip.py", line 39, in real_ip_middleware
    return await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/ban.py", line 72, in ban_middleware
    return await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/auth.py", line 135, in auth_middleware
    return await handler(request)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/view.py", line 123, in handle
    result = await result
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/config/config_entries.py", line 160, in post
    return await super().post(request, flow_id)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/http/data_validator.py", line 50, in wrapper
    result = await method(view, request, *args, **kwargs)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/helpers/data_entry_flow.py", line 89, in post
    result = await self._flow_mgr.async_configure(flow_id, data)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/data_entry_flow.py", line 130, in async_configure
    result = await self._async_handle_step(flow, cur_step["step_id"], user_input)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/data_entry_flow.py", line 172, in _async_handle_step
    result: Dict = await getattr(flow, method)(user_input)
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/homeassistant/components/adguard/config_flow.py", line 86, in async_step_user
    version = await adguard.version()
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/adguardhome/adguardhome.py", line 155, in version
    response = await self._request("status")
  File "/mnt/mmc0/work/homeassistant/lib/python3.8/site-packages/adguardhome/adguardhome.py", line 121, in _request
    raise AdGuardHomeError(
adguardhome.exceptions.AdGuardHomeError: (404, {'message': '404: Not Found'})

Posts: 1

Participants: 1

Read full topic

Config Inconsistency - Zone and Person

$
0
0

@klogg wrote:

I just upgraded to 105 and took the opportunity to define my Zones and Persons through the UI.

Can someone explain why I need person: in my conguration.yaml but I don’t need zone:?
(I don’t have default_config.)

Considering how simple this is it took me longer than it should have because1 I don’t think the docs especially for Zone are that clear or even consistent2. It doesn’t even mention the UI way to create them.

Or of course explain why I am wrong?

1Also there is no migration path for existing YAML defined zones so a lot of copy paste was needed, but that is not the point of this post.
2 And before someone says anything, no I can’t suggest a change to the docs because I don’t know what those changes, if any, should be.

Posts: 1

Participants: 1

Read full topic

Calculating Cost using a Utility Meter Sensor

$
0
0

@MarkR wrote:

Hello

I finally managed to get my Utility sensors working as they should, but what is the best way to get the cost of the persistent data sorted from a utility sensor please?

sensor

  - platform: integration
    source: sensor.tv_power
    name: tv energy
    unit_prefix: k
    round: 2

utility meter

utility_meter:
  tv_monthly:
    source: sensor.tv_energy
    cycle: monthly
  tv_daily:
    source: sensor.tv_energy
    cycle: daily
  tv_hourly:
    source: sensor.tv_energy
    cycle: hourly   

I thought it would be like this but it appears to just add it up and not sure how I should be going about it? as when I reboot HA the sensor shows 0 (see the graph drop)
image

    
  - platform: template
    sensors:
      tv_cost_hourly:
        friendly_name: TV Cost Hourly
        unit_of_measurement: '£'
        value_template: "{{ (states('sensor.tv_hourly') | float * 0.16653) | round(4) }}"
  - platform: template
    sensors:
      tv_cost_daily:
        friendly_name: TV Cost Daily
        unit_of_measurement: '£'
        value_template: "{{ (states('sensor.tv_daily') | float * 0.16653) | round(4) }}"   

I have a simple standard tariff, so any ideas please?

Cheers
Mark

Posts: 2

Participants: 2

Read full topic

Aqara cube and yeelight brightness

$
0
0

@magostinelli wrote:

Hello,

I’m configuring my aqara cube trough zigbee2mqtt.
I have already configured some others automations, but I’m in stuck with this one.
I want to change the brightness of my yeelight lamp while rotating the cube.

In my automation I have this action:

entity_id: light.luce_soggiorno
service_template: |
    {%if trigger.to_state.state == 'rotate_right' %} 
      brightness: '{{states.light.luce_soggiorno.attributes.brightness + 10}}'
    {% else %} 
      brightness: '{{states.light.luce_soggiorno.attributes.brightness - 10}}'
    {% endif %}

When i rotate the cube I receive this error in the log:
2020-02-15 13:28:35 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.cubo_intensita_luci. Invalid data for call_service at pos 1: Service brightness: ‘109’ does not match format ..

Thanks for your support.

Posts: 1

Participants: 1

Read full topic


SMPT with Outlook.com & two factor authentication

$
0
0

@Martix1980 wrote:

hello everyone here’s how to configure the sending of SMTP mail with outlook.com

configuration.yaml :

notify:
  - platform: smtp
    name: smtpmail
    server: smtp.office365.com
    port: 587
    timeout: 15
    sender: !secret notification_sender
    starttls: true
    username: !secret notification_username
    password: !secret notification_password
    recipient:
      - !secret notification_recipient
    sender_name: My Home Assistant

and in secrets.yaml

notification_sender: YOURMAIL
notification_username: YOURMAIL
notification_password: YOURPASSWORD
notification_recipient: YOURMAIL

To create a new app password for an app or device, take the following steps. You can repeat these steps to create an app password for as many apps or devices as you need.

  1. Go to the Security basics page and sign in to your Microsoft account.
  2. Select More security options .
  3. Under App passwords , select Create a new app password . A new app password is generated and appears on your screen.
  4. Enter this app password where you would enter your normal Microsoft account password in YOURPASSWORD.

Posts: 1

Participants: 1

Read full topic

Unable to connect to Home Assistant after update - access to files still via WINSCP - http issue?

$
0
0

@stwillibrord wrote:

Hi all, searched for hours but cannot find a solution. Updated Hassio and after that I’m unable to connect to Home assistant (as it says in the UI). I’m still able to access all my files on the raspberyy pi via WINSCP or the commandline. When trying to re-install a snapshot, the commands do not work “unexpected error occurs”. I don’t want to format and reinstall everything again, takes too much time. Copy of my log below indicates the config is invalid wrt to the http. set up as below. Any help would be appreciated!

Uncomment this if you are using SSL/TLS, running in Docker container, etc.

http:
api_password:
base_url: name_domain.duckdns.org
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem

Text to speech

copy of the log:

2020-02-15 14:42:04 ERROR (MainThread) [homeassistant.config] Invalid config for [http]: [api_password] is an invalid option for [http]. Check: http->http->api_password. (See /config/configuration.yaml, line 6). Please check the docs at https://www.home-assistant.io/integrations/http
2020-02-15 14:42:04 ERROR (MainThread) [homeassistant.setup] Setup failed for http: Invalid config.
2020-02-15 14:42:04 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of system_log. Setup failed for dependencies: http
2020-02-15 14:42:04 ERROR (MainThread) [homeassistant.setup] Setup failed for system_log: Could not set up all dependencies.
2020-02-15 14:42:06 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of webhook. Setup failed for dependencies: http
2020-02-15 14:42:06 ERROR (MainThread) [homeassistant.setup] Setup failed for webhook: Could not set up all dependencies.
2020-02-15 14:42:06 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of cloud. Setup failed for dependencies: http, webhook
2020-02-15 14:42:06 ERROR (MainThread) [homeassistant.setup] Setup failed for cloud: Could not set up all dependencies.
2020-02-15 14:42:06 WARNING (Recorder) [homeassistant.components.recorder] Ended unfinished session (id=56 from 2020-02-15 13:10:23.403438)
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of api. Setup failed for dependencies: http
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Setup failed for api: Could not set up all dependencies.
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of websocket_api. Setup failed for dependencies: http
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Setup failed for websocket_api: Could not set up all dependencies.
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of config. Setup failed for dependencies: http
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Setup failed for config: Could not set up all dependencies.
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of device_automation. Setup failed for dependencies: webhook
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Setup failed for device_automation: Could not set up all dependencies.
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of system_health. Setup failed for dependencies: http
2020-02-15 14:42:09 ERROR (MainThread) [homeassistant.setup] Setup failed for system_health: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of history. Setup failed for dependencies: http
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for history: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of auth. Setup failed for dependencies: http
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for auth: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of search. Setup failed for dependencies: websocket_api
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for search: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of zeroconf. Setup failed for dependencies: api
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for zeroconf: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of automation. Setup failed for dependencies: device_automation, webhook
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for automation: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.components.deconz] Error connecting to deCONZ gateway at 192.168.178.16
2020-02-15 14:42:10 WARNING (MainThread) [homeassistant.config_entries] Config entry for deconz not ready yet. Retrying in 5 seconds.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of onboarding. Setup failed for dependencies: auth, http
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for onboarding: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of mobile_app. Setup failed for dependencies: http, webhook
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for mobile_app: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of frontend. Setup failed for dependencies: api, auth, http, onboarding, search, system_log, websocket_api
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for frontend: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of map. Setup failed for dependencies: frontend
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for map: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of panel_custom. Setup failed for dependencies: frontend
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for panel_custom: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of logbook. Setup failed for dependencies: frontend, http
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for logbook: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of hassio. Setup failed for dependencies: http, panel_custom
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for hassio: Could not set up all dependencies.
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of default_config. Setup failed for dependencies: automation, cloud, config, frontend, history, logbook, map, mobile_app, system_health, zeroconf
2020-02-15 14:42:10 ERROR (MainThread) [homeassistant.setup] Setup failed for default_config: Could not set up all dependencies.
2020-02-15 14:42:12 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of tts. Setup failed for dependencies: http
2020-02-15 14:42:12 ERROR (MainThread) [homeassistant.setup] Setup failed for tts: Could not set up all dependencies.
2020-02-15 14:42:12 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of media_player. Setup failed for dependencies: http
2020-02-15 14:42:12 ERROR (MainThread) [homeassistant.setup] Setup failed for media_player: Could not set up all dependencies.
2020-02-15 14:42:17 ERROR (MainThread) [homeassistant.components.deconz] Error connecting to deCONZ gateway at 192.168.178.16
2020-02-15 14:42:17 WARNING (MainThread) [homeassistant.config_entries] Config entry for deconz not ready yet. Retrying in 10 seconds.
2020-02-15 14:42:28 ERROR (MainThread) [homeassistant.components.deconz] Error connecting to deCONZ gateway at 192.168.178.16
2020-02-15 14:42:28 WARNING (MainThread) [homeassistant.config_entries] Config entry for deconz not ready yet. Retrying in 20 seconds.
2020-02-15 14:42:49 ERROR (MainThread) [homeassistant.components.deconz] Error connecting to deCONZ gateway at 192.168.178.16
2020-02-15 14:42:49 WARNING (MainThread) [homeassistant.config_entries] Config entry for deconz not ready yet. Retrying in 40 seconds.
2020-02-15 14:43:30 ERROR (MainThread) [homeassistant.components.deconz] Error connecting to deCONZ gateway at 192.168.178.16
2020-02-15 14:43:30 WARNING (MainThread) [homeassistant.config_entries] Config entry for deconz not ready yet. Retrying in 80 seconds.
2020-02-15 14:44:51 ERROR (MainThread) [homeassistant.components.deconz] Error connecting to deCONZ gateway at 192.168.178.16
2020-02-15 14:44:51 WARNING (MainThread) [homeassistant.config_entries] Config entry for deconz not ready yet. Retrying in 80 seconds.
2020-02-15 14:46:12 ERROR (MainThread) [homeassistant.components.deconz] Error connecting to deCONZ gateway at 192.168.178.16
2020-02-15 14:46:12 WARNING (MainThread) [homeassistant.config_entries] Config entry for deconz not ready yet. Retrying in 80 seconds.
2020-02-15 14:47:33 ERROR (MainThread) [homeassistant.components.deconz] Error connecting to deCONZ gateway at 192.168.178.16
2020-02-15 14:47:33 WARNING (MainThread) [homeassistant.config_entries] Config entry for deconz not ready yet. Retrying in 80 seconds.

Relatively new to the space. If version numbers work, please indicate where to find them.

Posts: 2

Participants: 2

Read full topic

Question about config.yaml vs Configurator

$
0
0

@bigverm23 wrote:

so I noticed a few things as a noob to this:

  1. when using the configurator to set up automations, it puts the automation out of order compared to what you would see an as example on the HA page
  2. when i modify something simple like order, or try to add a comment in configurator, it doesnt save once I save, exit and eventually go back to view the config via Configurator…why is that?
    Configuration example:
- id: '1581688049688'
  alias: Office No Motion Day
  description: ''
  trigger:
  - entity_id: binary_sensor.office_sensor_sensor
    for: 00:10:00
    from: 'on'
    platform: state
    to: 'off'
  condition:
  - after: sunrise
    before: sunset
    condition: sun
  action:
  - data:
      transition: 30
    entity_id: light.osram_lightify_flex_rgbw_ee4d0200_level_light_color_on_off
    service: light.turn_off

HA Site Example:

 alias: Motion Sensor Lights On
  trigger:
    platform: state
    entity_id: binary_sensor.ecolink_pir_motion_sensor_sensor
    to: 'on'
  condition:
    condition: time
    after: '07:30'
    before: '23:30'
  action:
    service: homeassistant.turn_on
    entity_id: group.office_lights
    data:
      transition: 15

Posts: 2

Participants: 2

Read full topic

Brightness in MQTT template scheme

$
0
0

@vannooo wrote:

Hi,

Help me. Why brightness is not work in this code:

  command_on_template: >
    {% if brightness is defined %}
      {{ "BRI" + brightness }}
    {% else %}
      {% if effect is defined %}
        {{ "EFF" + effect }}
      {% else %}
        {% if state is defined %}
          {{ "P_ON" }}
        {% endif %}
      {% endif %}
    {% endif %}

Effect and power on works correctly.

Posts: 4

Participants: 2

Read full topic

Additional info in lights card

Viewing all 108449 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>