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

Camera issue

$
0
0

@Ian_Rehbein wrote:

Hello everyone,

I have the following problem:

Sorry my englisch is Not so good, but the camera already worked and now i get this error
Can somebody please help me

Protokolldetails ( ERROR )

Wed Dec 04 2019 12:29:35 GMT+0100 (Mitteleuropäische Normalzeit)
`
Invalid config for [camera.generic]: required key not provided @ data[‘still_image_url’]. Got None. (See ?, line ?). Please check the docs at https://home-assistant.io/integrations/generic/

`

Posts: 2

Participants: 2

Read full topic


Integration IFTTT, Google Home and HASSIO - not trigerring switch

$
0
0

@Phil wrote:

Hi all,

I have Hassio installed from the image on a Raspberry PI3.
I have configured my duckdns in https and it works
I have a google home and a IFTTT account (it works for other triggers).
The connection IFTT and Google Assistant works fine (my command is understood and I have the vocal reply).

I’m a newbie, but I have read (all) the tutorials and followed the instructions.
https://community.home-assistant.io/t/ifttt-webhook-and-webhook-id/84670
https://community.home-assistant.io/t/how-to-integrate-google-assistant-and-home-assistant-api-using-only-ifttt/19269
and so on.

In my configuration.yaml, I added

automation: !include automations.yaml
script: !include scripts.yaml

# Example configuration.yaml entry
ifttt:
  key: xxx - found on the (https://ifttt.com/maker_webhooks/settings) 

In the automation.yaml, I put

- alias: automate_ifttt
  trigger:
    - platform: event
      event_type: ifttt_webhook_received
      event_data:
        action: 'call_service'
  action:
    - service_template: '{{ trigger.event.data.service }}'
      data_template:
        entity_id: '{{ trigger.event.data.entity_id }}'

In my script.yaml (number was generated in the HASSIO script editor)

'1575417635560': 
  alias: allume_TV
  sequence:
  - device_id: 0622cf9141e44e14ae631fae2ec0f6c8
    domain: switch
    entity_id: switch.nodon_id_rf_asp_3_1_00_smart_plug_switch
    type: toggle

I test my script in the HASSIO Developpement tool/Service and it trigger my switch.

In the IFTT applet, I put in the Make a web request triggered by Google Assitanst (Say a simple phrase)

URL : https://MYDNS.duckdns.org:8123/api/webhook/xxxx (found once during the IFTT integration)
Method : POST
Content : application/JSON
Body : { “action”: “call_service”, “service”: “script.toggle”, “entity_id”:“script.1575417635560” } 

I think I have done everything, BUT it doesn’t work :unamused:

When I talk to my Google Home Assistant or App, it replies to my command and the applet is run with no error (I can see in the activity). BUT nothing is triggered… no error but nothing is done.

Where to find the activity of the HASSIO and for instance the request coming form IFTTT ? I could see if I received something or not and dig further…

Anyone has an idea ?

Posts: 3

Participants: 2

Read full topic

Calibration of aqara temperature sensors

$
0
0

@Nomad_of wrote:

Dear all I,
I use Hassio and several aquara sensors. I works quiet well, but their temperature differs a bit from each other at the same spot. To fix this I wanted to add an offset via templating them, but somehow I did not get it…

I have created a file called sensors.yaml in this I have added:

- platform: template
  sensors:
    T_offset_room_a:
      value_template: '{{ (sensor.room_a_t_h | round(1)) + 5}}' 
      friendly_name: 'Room A Temp'

I tried to integrate this by adding template: !include sensors.yaml into the configuration.yaml

But it did not work. Two questions:

  1. What du I have to change to make it work?
  2. Will this code change the volume of the entity or do I have to choose another entity to show the real temperature?

BR

Posts: 21

Participants: 4

Read full topic

Problem to config filter sensor with a smart plug for a washing machine

$
0
0

@pilot1981 wrote:

Hi,
I have a sensor on a smart plufg/outlet connected to a washing machine which works between 0 and 2000 watt.

this is may config:

  - platform: filter
    name: "Watt Lavatrice filtered"
    entity_id: sensor.watt_lavatrice
    filters:
      - filter: outlier
        window_size: 0
        radius: 2000.0
      - filter: lowpass
        time_constant: 60
      - filter: time_simple_moving_average
        window_size: 00:05
        precision: 0

this don’t work for me: any suggestions?

Posts: 2

Participants: 2

Read full topic

Help! New here

$
0
0

@acdc0211 wrote:

So I don’t know much about Home Assistant because I had a co-worker/friend who set mine up and the whole nine yards. Well he is the “host” of my home assistant (if that makes sense) and I would like to change that since he no longer works with me and isn’t a friend anymore. Which means I don’t want him to basically have all access to my house. Is there a fairly easy way to do that? Do I have to create a whole new home assistant?

Thanks in advance for any advice.

Posts: 7

Participants: 4

Read full topic

Generic Thermostat does not heat

$
0
0

@bernd67 wrote:

Having this in my Config:

homeassistant:
    customize:
      climate.og_feline_hzg_gen:
          friendly_name: Feline Heizung

sensor:
  - platform: knx
    name: 'og_feline_hzg_gen_ist'
    state_address: '3/1/203'
    # sync_state: false
    type: 'temperature'

# Future option for setting setpoint
  - platform: knx
    name: 'og_feline_hzg_gen_soll'
    state_address: '3/2/203'
    type: 'temperature'

switch:
  - platform: knx
    name: 'og_feline_hzg_gen_onoff'
    address: '3/3/203'

climate:
  - platform: generic_thermostat
    name: og_feline_hzg_gen
    heater: switch.og_feline_hzg_gen_onoff
    target_sensor: sensor.og_feline_hzg_gen_ist
    target_temp: 20.5
    min_temp: 7
    max_temp: 24
    cold_tolerance: 0.1
    hot_tolerance: 0.1
    ac_mode: false
    keep_alive:
        minutes: 10
    min_cycle_duration:
        seconds: 45
    initial_hvac_mode: 'off'
    precision: 0.

and found this in my HA Logfile:
[homeassistant.components.generic_thermostat.climate] Obtained current and target temperature. Generic thermostat active. 20.22, 20.5

Seam to be perfect … but the f…g item does not heat (and so the onoff-thing does not switch)
Add: If I set the initial_hvac_mode to ‘heat’, it heats.

Has anyone any idea? Thanks in advance…

Cheers
Bernd

Posts: 20

Participants: 4

Read full topic

New year automations

$
0
0

@Argo wrote:

Hello! New year and Christmas are coming, tell me about your automations and ideas for holidays?

Here is my small example:

When the guests come home - mini santa starts singing with beautiful lights. Santa is not really singing, chrome cast does. And lights are yeelight with different modes.

Posts: 5

Participants: 3

Read full topic

Philips Hue hub vs non-hub question

$
0
0

@jarvistek wrote:

I apologise in advance if anything is not quite coherent, I’m home with a cold today. I’m having a problem similar to what is described here: https://community.home-assistant.io/t/how-to-turn-on-2-light-concurrently-without-using-groups
I’m currently using the gen3 bulbs with no hub installed, just a lightgroup in HA. When I turn the group on/off, sometimes one or two bulbs decide not to do anything. They seem to end up settling down if I change the dimming or flip the lights off and on again. The problem is it’s random and every time it’s done it, I’m dead tired and don’t want to dig through logs. This setup worked fine for the last 6 months or so with hue white ambiance bulbs and sengled led bulbs at various times, but I wanted the ability to have color, flash, and transition which (as far as I’m aware) hue color are the only ones that check all of those boxes.

So, to my question, do most folks use the hue hub or do they connect the bulbs straight to HA? Are there any specific advantages of one over the other? I’ve tried searching through the forum for the last couple of days, but have come up short. Thanks in advance for your thoughts!

Posts: 4

Participants: 2

Read full topic


RM mini 3 stopped working from HA 0.101 -> 0.102

$
0
0

@benquan wrote:

I had RM mini 3 working just fine with HASSIO 0.101 and RM Mini 3 v55
I upgraded to HASSIO 0.102.3 and started getting this error:
[homeassistant.components.broadlink.switch] Failed to connect to device

IHC works just fine and the IP has not changed…
I proceeded to update to RM Mini v57 but still same problem. It must be something with HA.

My config as a switch:

  - platform: broadlink
    host: 192.168.0.58
    mac: 'C8:F7:42:21:A1:XX'
    type: rm_mini

Posts: 1

Participants: 1

Read full topic

Z-wave node spamming my ozw.log

$
0
0

@Frax wrote:

Hi there,
I have an issue with my z-wave network.
My node nr10 is filling my log up to 2gb of data during 24h. What I can see is that the node is receiving data all the time. ReceivedTS is constantly updating… no other node is doing that.
The thing is also that my z-wave network is extremely slow. If I press I light in the UI it can take 2-30min for the light to switch on/off.

When I unplug the node nr10 it works perfectly again. Under 1sec to switch a light on/off.

What can possibly be wrong with my node nr10? Can I edit it somehow so it stops receiving data for receivedTS all the time?

Posts: 13

Participants: 2

Read full topic

UniFi intergration, why some clients are not showing up as entities

$
0
0

@penright wrote:

Just enabled the UniFi integration for a Dream Machine. For some reason, my phone will not show up in the entities but is in the client’s list.

Client List showing Pauls Phone

Here are the only ones I see in the integration list.
This is a complete list.

This may need a sperate thread …
What attribute that says “I am here”?
Maybe a different way of asking, is the “state” the only place you see the home? If so, they are all showing home, is that becuase I am not home that mine is not showing up?

Posts: 7

Participants: 3

Read full topic

Controll ikea gu10 lamp with z-wave dimmer

$
0
0

@Henrik1986 wrote:

Hi! I have a z-wave dimmer in my kitchen that I control seven halogen bulbs with. In the kitchen there is also two gu10 bulbs that i want to control with the same switch. The problem is that I can’t connect them to the same dimmer switch because it’s not support different loads. Is there any way to use the brightness level (in hass.io) from the z-wave dimmer as a trigger to control two smart gu10 lamp. In that way I can control the brightness level with my z-wave switch.

Posts: 2

Participants: 2

Read full topic

Zwave renaming

$
0
0

@getut wrote:

I have found a ton of history on the forums about people renaming zwave nodes and their entities.

I am having the same problem. Except I can rename them. I just can find where to rename the one that actually matters.

I can rename the root node device and I can rename the entities underneath that, but no matter where I rename it, when I go to select them to use them in automations I still have no way to uniquely identify them.

For example, I have a few zooz motion detectors. I have renamed the roots of all them in the format of:
znode-motion-location

The entities under that, specifically the binary switch and the burglar entity have all been renamed:
motion-location

But when I go into automation and look under triggers, they are all listed by the default device name just as Zooz ZSE 18 Motion Sensor. I’m very early in setting this up so it isn’t that big of a pain, but once I get further in, this will be a major headache…

How do I rename them in a way that they are identifiable when creating automations and using them as triggers?

Posts: 10

Participants: 5

Read full topic

Turn lights off only if none of three motion sensors is triggered

$
0
0

@dantist wrote:

I’ve set up a rule to turn the lights on and off based on three motion sensors. It works fine for turning it on:

  trigger:
    platform: state
    entity_id: binary_sensor.homematic_motion_sensor_motion, binary_sensor.homematic_switch_1_motion, binary_sensor.homematic_switch_2_motion
    to: 'on'

but not correctly for turning it off:

  trigger:
    platform: state
    entity_id: binary_sensor.homematic_motion_sensor_motion, binary_sensor.homematic_switch_1_motion, binary_sensor.homematic_switch_2_motion
    to: 'off'
    for:
      minutes: 2

Even if I move within the range of one sensor, the lights turn off after two minutes. I guess I created a rule where ALL sensors have to be triggered to prevent the light from turning off. How do I change this so it doesn’t matter which sensors are triggered within the given time frame?

Posts: 9

Participants: 3

Read full topic

WebUI not responding - Could not set up all dependencies error in log

$
0
0

@its wrote:

My HA container has been running for a long time with auto updates. Recently realized that the WebUI is not running. Restarting the container manually shows the following error in the logs

2019-12-04 18:28:06 ERROR (MainThread) [homeassistant.core] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/components/discovery/__init__.py", line 179, in new_service_found
    data=info,
  File "/usr/src/homeassistant/homeassistant/data_entry_flow.py", line 66, in async_init
    flow = await self._async_create_flow(handler, context=context, data=data)
  File "/usr/src/homeassistant/homeassistant/config_entries.py", line 638, in _async_create_flow
    await async_process_deps_reqs(self.hass, self._hass_config, integration)
  File "/usr/src/homeassistant/homeassistant/setup.py", line 288, in async_process_deps_reqs
    raise HomeAssistantError("Could not set up all dependencies.")
homeassistant.exceptions.HomeAssistantError: Could not set up all dependencies.

Any help on how to fix this?

Posts: 1

Participants: 1

Read full topic


Can't get zwave devices to install

$
0
0

@wedraper wrote:

i’m completely new to hassio. previously used wink for HA, just trying to get onto a system that’s not going to go away. i’ve added my zwave device (HUSBZB-1) successfully. i just can’t get any zwave devices to connect. i hit the “add node” button under the zwave management tab, it turns green briefly, then…nothing. OZW log has below:

2019-12-04 13:26:24.776 Detail, Queuing (Controller) Add Device
2019-12-04 13:26:24.777 Info, Add Device
2019-12-04 13:26:24.777 Detail, contrlr, Queuing (Command) ControllerCommand_AddDevice: 0x01, 0x05, 0x00, 0x4a, 0xc1, 0x0a, 0x7b
2019-12-04 13:26:24.778 Detail, Notification: ControllerCommand - Starting
2019-12-04 13:26:24.778 Detail,
2019-12-04 13:26:24.778 Info, contrlr, Sending (Command) message (Callback ID=0x0a, Expected Reply=0x4a) - ControllerCommand_AddDevice: 0x01, 0x05, 0x00, 0x4a, 0xc1, 0x0a, 0x7b
2019-12-04 13:26:24.781 Detail, contrlr,   Received: 0x01, 0x07, 0x00, 0x4a, 0x0a, 0x01, 0x00, 0x00, 0xb9
2019-12-04 13:26:24.781 Detail,
2019-12-04 13:26:24.781 Info, contrlr, FUNC_ID_ZW_ADD_NODE_TO_NETWORK:
2019-12-04 13:26:24.781 Info, contrlr, ADD_NODE_STATUS_LEARN_READY
2019-12-04 13:26:24.781 Detail, Node001,   Expected callbackId was received
2019-12-04 13:26:24.781 Detail, Node001,   Expected reply was received
2019-12-04 13:26:24.781 Detail, Node001,   Message transaction complete
2019-12-04 13:26:24.781 Detail,
2019-12-04 13:26:24.781 Detail, contrlr, Removing current message
2019-12-04 13:26:24.781 Detail, Notification: ControllerCommand - Waiting
2019-12-04 13:26:24.782 Info, WriteNextMsg Controller nothing to do

Posts: 7

Participants: 2

Read full topic

Prevent phone from sending this information to HA

$
0
0

@aristosv wrote:

After the latest HA update on my phone, I get these in Home Assistant.

1

How can I prevent my phone from sending this information in Home Assistant?

I don’t want to configure Home Assistant to block, or ignore the phone. I want to prevent the phone from sending this information.

Thanks

Posts: 17

Participants: 7

Read full topic

Media Playback preset (SoundTouch)

$
0
0

@harrazh wrote:

Hi,
This is a basic question but I’m new to all of this, I have added both of my bose soundtouch speakers to HA manually since it couldnt pick them up automatically!!!
It works fine but when I tried to add the presets I’m getting below error

Invalid config for [media_player]: required key not provided @ data['platform']. Got None

my configuration looks like this

- service: media_player.play_media
    data:
      entity_id: media_player.soundtouch_living_room
      media_content_id: 1
      media_content_type: PLAYLIST 

What am I missing?

I’m running the latest version 0.102.3 in a docker and followed instructions here

Posts: 1

Participants: 1

Read full topic

Discovery not working

$
0
0

@Fredrik_Jacobsson wrote:

I have Hassio installed in a Docker on a Ubuntu host.
I have just discovered that the Discovery dosen’t work.
Have read that you need to use --net=host when you have installed Hassio in a Docker.
But I don’t really understand how to use it and it seems to be some others that have hade problem when they have been using that command.
Maybe someone knows if it should be like this?
Do I need to include the “device”?
If needed, what should the path be?

$ docker run --init -d \
--name="home-assistant" \
-v /PATH_TO_YOUR_CONFIG:/config \
-e "TZ=Europe/Stockholm" \ 
--device /dev/ttyUSB0:/dev/ttyUSB0 \
--net=host homeassistant/home-assistant:stable

Posts: 2

Participants: 2

Read full topic

Strange delay for some switches in sanm group

$
0
0

@Mas wrote:

I have a group with 11 switches (z-wave, wifi and zigbee)
When I turn on/off the group all switched exepts for two turns on/off direct.
The other two have a delay, the first turns on/off after 1min and the secobd after 2min.
Both are Zigbee switches (IKEA trådfri) and I have other of same type that turns on/off direct in the same group.

Any tips?

Posts: 1

Participants: 1

Read full topic

Viewing all 106845 articles
Browse latest View live


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