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

Can't see or add Automation or Script

$
0
0

@LuigiPzz wrote:

Hello,

i have a problem with automations and scripts, so far everything worked fine, then suddenly this:

if i create from gui or direct on automation.yaml an automation or a script i can’t see under the editor.
I don’t see notifications or errors in the log tool that can cause this.

Editor:

Posts: 2

Participants: 1

Read full topic


Help on telegram extension "Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)"

$
0
0

@PieBru wrote:

Hi all,
I just installed the telegram platform and it apparently works, but I suspect it misses some notifications and my home_assistant.log is flooded every few seconds by these error messages:

2020-03-09 19:50:59 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:51:05 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:51:11 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:51:18 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:51:33 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:51:38 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:51:44 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:51:51 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:51:59 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)
2020-03-09 19:52:09 ERROR (updater) [telegram.ext.updater] Error while getting Updates: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running (409)

I followed the official guide and here is my structured configuration.yaml

integrations/telegram_bot.yaml :

telegram_bot:
  - platform: polling
    api_key: !secret telegram_bot_api_key
    allowed_chat_ids:
      - !secret telegram_bot_piero_chat_id

integrations/notify.yaml :

notify:
  - name: telegram_piero
    platform: telegram
    chat_id: !secret telegram_bot_piero_chat_id

automations.yaml (generated by the WEB UI):

- id: '1583691545817'
  alias: Corona virus
  description: ''
  trigger:
  - entity_id: sensor.italy_coronavirus_confirmed
    platform: state
  condition: []
  action:
  - data:
      message: 'Corona virus confirmed Italy:  {{ states("sensor.italy_coronavirus_confirmed")
        }}'
    service: notify.telegram_piero

automations/notify_failed_logins.yaml :

alias: "Notify failed logins"

initial_state: true

trigger:
  - platform: state
    entity_id: persistent_notification.http_login

condition:
  - condition: template
    value_template: "{{ trigger.to_state.state != 'None' }}"

action:

  - service: notify.telegram_piero
    data_template:
      title: "{{ states.persistent_notification.http_login.attributes.message }}"
      message: 'url: https://whatismyipaddress.com/ip/{{ states.persistent_notification.http_login.attributes.message.split ("from ") [1]}}'

  - service: persistent_notification.dismiss
    data:
      notification_id: 'http_login'

automations/notify_new_devices.yaml :

alias: "Notify new devices"

initial_state: true

trigger:
  - platform: event
    event_type: device_tracker_new_device

action:
  - service: notify.telegram_piero
    data_template:
      message: '{{trigger.event.data.entity_id}}'
      title: New device

Please help me to sort out this.
Thanks,
Piero

Posts: 1

Participants: 1

Read full topic

Post sensor values to MQTT

$
0
0

@baz123 wrote:

Is there a simple way to push sensor values to MQTT for other systems to consume?

The only way I can see is by using an automation or by using Node-Red to monitor the state of the sensor or poll it and push the value to MQTT.

Posts: 12

Participants: 5

Read full topic

Lets Encrypt, "None of the preferred challenges are supported"

$
0
0

@guice wrote:

I’m getting “None of the preferred challenges are supported by the selected plugin” trying to update my certificate. I moved from http to dns setting. I’m using CloudFlare, api token. I don’t know why it’s failing. My yaml:

email: [redacted]
domains:
  - [redacted].com
certfile: [redacted].com.cert
keyfile: [redacted].com.key
challenge: dns
dns:
  provider: dns-cloudflare
  cloudflare_api_token: [redacted]

My token is correct; it has Zone:Zone:Read, and Zone:DNS:Edit on “All Account.” It fails with:

Performing the following challenges:
Attempting to renew cert ([redacted].com) from /data/letsencrypt/renewal/[redacted].com.conf produced an unexpected error: None of the preferred challenges are supported by the selected plugin. Skipping.
All renewal attempts failed. The following certs could not be renewed:
  /data/letsencrypt/live/[redacted].com/fullchain.pem (failure)

Posts: 2

Participants: 1

Read full topic

How to set size or scale of canvas gauge using something else besides pixels?

$
0
0

@Mats_Karlsson wrote:

Is there some clever way to set the size of a Canvas Gauge without referring to pixels? Ideally as a percentage of a picture-elements or as a percentage of the entire screen. Now it can only be sized properly for one screen-size at a time…

Posts: 1

Participants: 1

Read full topic

Help on automation template

$
0
0

@naamah75 wrote:

Hi folks! I don’t have a clie why this work

- id: 'pzem_004t_color'
  alias: PZEM-004T color
  initial_state: 'on'
  trigger:
  - platform: time_pattern
    minutes: "/1"
  action:
    - service: light.turn_on
      data:
        entity_id: light.pzem_004t
        brightness: 255
        rgb_color: [128,0,0]

…and this didn’t …

- id: 'pzem_004t_color'
  alias: PZEM-004T color
  initial_state: 'on'
  trigger:
  - platform: time_pattern
    minutes: "/1"
  action:
    - service: light.turn_on
      data_template:
         entity_id: light.pzem_004t
         brightness: 255
         rgb_color: "[{{(states('input_number.power_test') | int / 6000*255) | int }},0,0]"

Obviously I’ve tried Jinja2 model template and it works… I’ve some like [128,0,0]

Posts: 6

Participants: 2

Read full topic

Https autentication failure

$
0
0

@GrazianoCecchi wrote:

help, I performed the procedure to be able to connect to my Home Assistant with the https protocol using the duckdns.org site.
Remotely it works very well, from within the home network it does not work from android, from PC instead it works.
My router uses the hirpin on, if i disable it the pc no longer connects then the router works properly it seems. Only smartphones don’t connect from my home network with the address https://mydomain.duckdns.org:8123.
Can you help me?

Posts: 1

Participants: 1

Read full topic

Automation does not triggered after update to 106

$
0
0

@murmusbahnus wrote:

Hey all,

I have an automation for my Playstation 4 which changes my light based on the game I play. Since 106 this doesnt work anymore. Does someone have a clue? Here is the code:

- alias: Media Player PS4 Tekken
  trigger:
    platform: state
    entity_id: media_player.playstation_4
    from: 'idle'
    to: 'playing'
  condition:
    - condition: template
      value_template: "{{ states.media_player.playstation_4.attributes.source == 'TEKKEN 7' }}"
  action:
    - service: scene.turn_on
      data_template:
        entity_id: scene.tekken

When i manually trigger the automation everything works. Strange.

Posts: 4

Participants: 3

Read full topic


Getting all ZHA devices

$
0
0

@jms3000 wrote:

In older HA versions, it was possible to get all ZHA devices with

{{ states.zha|list }}

but it seems that the zha.* entities have been dropped in news HA versions.
Is there any other way to get the list of ZHA devices?

Posts: 1

Participants: 1

Read full topic

Edit sonof switch in tasmota after hassio integration

$
0
0

@Jordyds99 wrote:

Hi! I’ve integrated my sonoff mini device in to Home Assistant, but now I see I have made a mistake in my tasmota settings. So I want to change this settings but I can’t come in to the Tasmota settings dashboard.

does anyone know how to fix this?

Posts: 2

Participants: 2

Read full topic

Is it possible to ignore or remove low values from temp sensor on restart?

$
0
0

@smart wrote:

I was working on upgrading HA yesterday and because if that I was stoping and restarting a few times. Now the 48 hour graph for my refrigerator temp sensor has 1.5F values causing the graph to change the display range from the normal range of 35-37F to 0-37 making the graph look flat lined.

I see several possible options but don’t find a way to configure.

  1. configure somehow to ignore out of range temp reports. (future fix)
  2. remove 1.5 entries from saved state. Don’t know how to do this. but would fix the issue now.
  3. configure history graph card with a fixed display range. I don’t see any options for history graph to fix the display range.

Any ideas on how to solve this?

Screen Shot 2020-03-09 at 9.46.38 AM

UPDATE: I was able to remove the bad entry using the following sql.

delete from states where entity_id = 'sensor.fibaro_motion_bedroom_temperature' and state = '1.5';

Would still like to know if there is a way to ignore these on restart. Although at least I have a solution now.

Posts: 2

Participants: 2

Read full topic

Delay in updating state for a Xiaomi Door seneor

$
0
0

@HNG wrote:

Hey,

I’m trying to set automation to turn on lights if the state of the sensor (Xiaomi Door sensor) changes, I got everything working except there is a 1-minute delay till the sensor updates, which delays the execution of the automation.

The sensor is connected to an Aqara hub that was discovered and added automatically, so I cannot find the settings for it in config.yaml to add a different scan interval.

Any ideas on how can I fix this or where can I change that scan interval ?

Posts: 1

Participants: 1

Read full topic

Rfxtrx device not added, convert debug info to device

$
0
0

@doets001 wrote:

Hi, I have a working rfxtrx with a couple of temp sensors. I also have a doorbel, but it is not automatically added. When I debug the rfxtrx I see the hex codes when pressing the doorbel. How do I get the deviceid.

example when pressing the doorbel:
RFXTRX: Recv: 0x0b 0x11 0x00 0x09 0x01 0x48 0x8e 0xca 0x01 0x04 0x0f 0x60

Posts: 3

Participants: 2

Read full topic

Where is the zwave config stored?

$
0
0

@pdwonline wrote:

I have to configure a new Home Assistant, since my old setup has crashed. However, I do have a backup copy of the Home Assistant directory. Since Zwave devices are paired to my Zwave stick, I want to configure a fresh HA and then add the Zwave config files from the backup.

is that possible? and what files to I need to copy then?

Posts: 1

Participants: 1

Read full topic

Is it possible to configure the Coronavirus integration to go down to US - State level?

$
0
0

@smart wrote:

The John Hopkins site has state data on the map so wondering if it would be possible to alter the configuration to get state level details. I am guessing that would require code changes to the integration but perhaps it can be hacked?

Posts: 6

Participants: 2

Read full topic


Fire automation on interval

$
0
0

@Devanl wrote:

I’m working on implementing my automation from this thread.

Here are the automations:

- id: garage_light_automation_1
  alias: Garage Lights Door Event Handler
  description: Update garage_timer_input on door events when it is night
  trigger: 
  - platform: state
    entity_id: binary_sensor.garage_door
    from: 'off'    
    to: 'on'
  condition:
  - condition: state
    entity_id: sun.sun
    state: below_horizon
  - condition: or
    conditions:
    - condition: numeric_state
      entity_id: input_number.garage_timer_input
      above: -1
    - condition: state
      entity_id: light.frst_garage_interior
      state: 'off'
  action:
    - service: input_number.set_value
      data_template:
        entity_id: input_number.garage_timer_input
        value: "{{ [states('input_number.garage_timer_input')|int, 5]|max }}"
- id: garage_light_automation_2
  alias: Garage Lights Counter State Handler
  description: Decrement garage_timer_input and take actions
  trigger: 
    - platform: state
      entity_id: input_number.garage_timer_input
  action:
    - delay: '00:00:01'
    - condition: numeric_state
      entity_id: input_number.garage_timer_input
      above: -1
    - service_template: "{% if (states('input_number.garage_timer_input')|int - 1) == 0 %}\n   switch.turn_off\n\
        {% else %}\n   switch.turn_on\n{% endif %}"
      entity_id: light.frst_garage_interior      
    - service: notify.mobile_app_devans_iphone
      data_template:
        title: Garage Timer
        message: Garage lights will turn off in {{ trigger.to_state.state|int - 1 }} minutes.
        data:
          apns_headers:
            apns-collapse-id: garge-interior-light
          push:
            category: gargetimer
    - wait_template: "{{ states('input_number.garage_timer_input') != trigger.to_state.state }}"
      timeout: '00:01:00'
    - service: input_number.decrement
      entity_id: input_number.garage_timer_input
- id: garage_light_automation_3
  alias: Garage Lights iOS App Event Handler
  description: Update garage_timer_input on app events
  trigger:
  - platform: event
    event_type: ios.notification_action_fired
    event_data:
      actionName: SLEEP_TIMER
  - platform: event
    event_type: ios.notification_action_fired
    event_data:
      actionName: DISABLE_TIMER
  action:
    service: input_number.set_value
    data_template:
      entity_id: input_number.garage_timer_input
      value: >
        {% if trigger.event.data.actionName == "SLEEP_TIMER" %}
          {{ states('input_number.garage_timer_input')|int + 5 }}
        {% else %}
          -1
        {% endif %}

I’m running in to a problem where the garage_light_automation_2 automation is firing twice (notify with 5 then 3, etc). From reading around it appears I need to solve this by placing the delay inside of a script which waits 1 minute and then decrements the count.

I’m ok with this, but I was wondering if someone could explain to me why this is happening?



{
    "event_type": "state_changed",
    "data": {
        "entity_id": "automation.garage_lights_counter_state_handler",
        "old_state": {
            "entity_id": "automation.garage_lights_counter_state_handler",
            "state": "on",
            "attributes": {
                "last_triggered": "2020-03-09T20:11:15.062080+00:00",
                "id": "garage_light_automation_2",
                "friendly_name": "Garage Lights Counter State Handler"
            },
            "last_changed": "2020-03-09T20:08:45.919139+00:00",
            "last_updated": "2020-03-09T20:11:15.062627+00:00",
            "context": {
                "id": "6aed3a96d82346c0904506c0331dc216",
                "parent_id": "4dc67bcebc074630bed88021a84277c1",
                "user_id": null
            }
        },
        "new_state": {
            "entity_id": "automation.garage_lights_counter_state_handler",
            "state": "on",
            "attributes": {
                "last_triggered": "2020-03-09T20:11:15.077279+00:00",
                "id": "garage_light_automation_2",
                "friendly_name": "Garage Lights Counter State Handler"
            },
            "last_changed": "2020-03-09T20:08:45.919139+00:00",
            "last_updated": "2020-03-09T20:11:15.077951+00:00",
            "context": {
                "id": "6aed3a96d82346c0904506c0331dc216",
                "parent_id": "4dc67bcebc074630bed88021a84277c1",
                "user_id": null
            }
        }
    },
    "origin": "LOCAL",
    "time_fired": "2020-03-09T20:11:15.078047+00:00",
    "context": {
        "id": "6aed3a96d82346c0904506c0331dc216",
        "parent_id": "4dc67bcebc074630bed88021a84277c1",
        "user_id": null
    }
}

Event 8 fired 4:11 PM:

{
    "event_type": "state_changed",
    "data": {
        "entity_id": "automation.garage_lights_counter_state_handler",
        "old_state": {
            "entity_id": "automation.garage_lights_counter_state_handler",
            "state": "on",
            "attributes": {
                "last_triggered": "2020-03-09T20:10:12.641937+00:00",
                "id": "garage_light_automation_2",
                "friendly_name": "Garage Lights Counter State Handler"
            },
            "last_changed": "2020-03-09T20:08:45.919139+00:00",
            "last_updated": "2020-03-09T20:10:12.642501+00:00",
            "context": {
                "id": "77aa1bc4d38f4acf956628cdf19ff127",
                "parent_id": "1609617444f944449db733710284721a",
                "user_id": null
            }
        },
        "new_state": {
            "entity_id": "automation.garage_lights_counter_state_handler",
            "state": "on",
            "attributes": {
                "last_triggered": "2020-03-09T20:11:15.062080+00:00",
                "id": "garage_light_automation_2",
                "friendly_name": "Garage Lights Counter State Handler"
            },
            "last_changed": "2020-03-09T20:08:45.919139+00:00",
            "last_updated": "2020-03-09T20:11:15.062627+00:00",
            "context": {
                "id": "6aed3a96d82346c0904506c0331dc216",
                "parent_id": "4dc67bcebc074630bed88021a84277c1",
                "user_id": null
            }
        }
    },
    "origin": "LOCAL",
    "time_fired": "2020-03-09T20:11:15.062709+00:00",
    "context": {
        "id": "6aed3a96d82346c0904506c0331dc216",
        "parent_id": "4dc67bcebc074630bed88021a84277c1",
        "user_id": null
    }
}

Event 7 fired 4:11 PM:

{
    "event_type": "state_changed",
    "data": {
        "entity_id": "input_number.garage_timer_input",
        "old_state": {
            "entity_id": "input_number.garage_timer_input",
            "state": "4.0",
            "attributes": {
                "initial": -1,
                "editable": false,
                "min": -1,
                "max": 10000,
                "step": 1,
                "mode": "slider",
                "unit_of_measurement": "minutes",
                "friendly_name": "Garage Timer",
                "icon": "mdi:clock-outline"
            },
            "last_changed": "2020-03-09T20:11:15.017914+00:00",
            "last_updated": "2020-03-09T20:11:15.017914+00:00",
            "context": {
                "id": "77aa1bc4d38f4acf956628cdf19ff127",
                "parent_id": "1609617444f944449db733710284721a",
                "user_id": null
            }
        },
        "new_state": {
            "entity_id": "input_number.garage_timer_input",
            "state": "3.0",
            "attributes": {
                "initial": -1,
                "editable": false,
                "min": -1,
                "max": 10000,
                "step": 1,
                "mode": "slider",
                "unit_of_measurement": "minutes",
                "friendly_name": "Garage Timer",
                "icon": "mdi:clock-outline"
            },
            "last_changed": "2020-03-09T20:11:15.042965+00:00",
            "last_updated": "2020-03-09T20:11:15.042965+00:00",
            "context": {
                "id": "4dc67bcebc074630bed88021a84277c1",
                "parent_id": "77aa1bc4d38f4acf956628cdf19ff127",
                "user_id": null
            }
        }
    },
    "origin": "LOCAL",
    "time_fired": "2020-03-09T20:11:15.043045+00:00",
    "context": {
        "id": "4dc67bcebc074630bed88021a84277c1",
        "parent_id": "77aa1bc4d38f4acf956628cdf19ff127",
        "user_id": null
    }
}

Event 6 fired 4:11 PM:

{
    "event_type": "state_changed",
    "data": {
        "entity_id": "input_number.garage_timer_input",
        "old_state": {
            "entity_id": "input_number.garage_timer_input",
            "state": "5.0",
            "attributes": {
                "initial": -1,
                "editable": false,
                "min": -1,
                "max": 10000,
                "step": 1,
                "mode": "slider",
                "unit_of_measurement": "minutes",
                "friendly_name": "Garage Timer",
                "icon": "mdi:clock-outline"
            },
            "last_changed": "2020-03-09T20:10:12.628256+00:00",
            "last_updated": "2020-03-09T20:10:12.628256+00:00",
            "context": {
                "id": "1609617444f944449db733710284721a",
                "parent_id": "5869fcfcafff406b900e899d59baf3fe",
                "user_id": null
            }
        },
        "new_state": {
            "entity_id": "input_number.garage_timer_input",
            "state": "4.0",
            "attributes": {
                "initial": -1,
                "editable": false,
                "min": -1,
                "max": 10000,
                "step": 1,
                "mode": "slider",
                "unit_of_measurement": "minutes",
                "friendly_name": "Garage Timer",
                "icon": "mdi:clock-outline"
            },
            "last_changed": "2020-03-09T20:11:15.017914+00:00",
            "last_updated": "2020-03-09T20:11:15.017914+00:00",
            "context": {
                "id": "77aa1bc4d38f4acf956628cdf19ff127",
                "parent_id": "1609617444f944449db733710284721a",
                "user_id": null
            }
        }
    },
    "origin": "LOCAL",
    "time_fired": "2020-03-09T20:11:15.017994+00:00",
    "context": {
        "id": "77aa1bc4d38f4acf956628cdf19ff127",
        "parent_id": "1609617444f944449db733710284721a",
        "user_id": null
    }
}

Event 3 fired 4:10 PM:

{
    "event_type": "state_changed",
    "data": {
        "entity_id": "automation.garage_lights_door_event_handler",
        "old_state": {
            "entity_id": "automation.garage_lights_door_event_handler",
            "state": "on",
            "attributes": {
                "last_triggered": "2020-03-09T20:01:04.209209+00:00",
                "id": "garage_light_automation_1",
                "friendly_name": "Garage Lights Door Event Handler"
            },
            "last_changed": "2020-03-09T20:08:45.891661+00:00",
            "last_updated": "2020-03-09T20:08:45.891661+00:00",
            "context": {
                "id": "c2c0a769d1bf4e84b9776529d6d9dc7a",
                "parent_id": null,
                "user_id": null
            }
        },
        "new_state": {
            "entity_id": "automation.garage_lights_door_event_handler",
            "state": "on",
            "attributes": {
                "last_triggered": "2020-03-09T20:10:12.659551+00:00",
                "id": "garage_light_automation_1",
                "friendly_name": "Garage Lights Door Event Handler"
            },
            "last_changed": "2020-03-09T20:08:45.891661+00:00",
            "last_updated": "2020-03-09T20:10:12.660096+00:00",
            "context": {
                "id": "1609617444f944449db733710284721a",
                "parent_id": "5869fcfcafff406b900e899d59baf3fe",
                "user_id": null
            }
        }
    },
    "origin": "LOCAL",
    "time_fired": "2020-03-09T20:10:12.660176+00:00",
    "context": {
        "id": "1609617444f944449db733710284721a",
        "parent_id": "5869fcfcafff406b900e899d59baf3fe",
        "user_id": null
    }
}

Event 2 fired 4:10 PM:

{
    "event_type": "state_changed",
    "data": {
        "entity_id": "automation.garage_lights_counter_state_handler",
        "old_state": {
            "entity_id": "automation.garage_lights_counter_state_handler",
            "state": "on",
            "attributes": {
                "last_triggered": "2020-03-09T20:04:17.152427+00:00",
                "id": "garage_light_automation_2",
                "friendly_name": "Garage Lights Counter State Handler"
            },
            "last_changed": "2020-03-09T20:08:45.919139+00:00",
            "last_updated": "2020-03-09T20:08:45.919139+00:00",
            "context": {
                "id": "2f9cbb56d97646aca75b9e6805632f50",
                "parent_id": null,
                "user_id": null
            }
        },
        "new_state": {
            "entity_id": "automation.garage_lights_counter_state_handler",
            "state": "on",
            "attributes": {
                "last_triggered": "2020-03-09T20:10:12.641937+00:00",
                "id": "garage_light_automation_2",
                "friendly_name": "Garage Lights Counter State Handler"
            },
            "last_changed": "2020-03-09T20:08:45.919139+00:00",
            "last_updated": "2020-03-09T20:10:12.642501+00:00",
            "context": {
                "id": "77aa1bc4d38f4acf956628cdf19ff127",
                "parent_id": "1609617444f944449db733710284721a",
                "user_id": null
            }
        }
    },
    "origin": "LOCAL",
    "time_fired": "2020-03-09T20:10:12.642578+00:00",
    "context": {
        "id": "77aa1bc4d38f4acf956628cdf19ff127",
        "parent_id": "1609617444f944449db733710284721a",
        "user_id": null
    }
}

Event 1 fired 4:10 PM:

{
    "event_type": "state_changed",
    "data": {
        "entity_id": "input_number.garage_timer_input",
        "old_state": {
            "entity_id": "input_number.garage_timer_input",
            "state": "-1.0",
            "attributes": {
                "initial": -1,
                "editable": false,
                "min": -1,
                "max": 10000,
                "step": 1,
                "mode": "slider",
                "unit_of_measurement": "minutes",
                "friendly_name": "Garage Timer",
                "icon": "mdi:clock-outline"
            },
            "last_changed": "2020-03-09T20:04:17.076674+00:00",
            "last_updated": "2020-03-09T20:04:17.076674+00:00",
            "context": {
                "id": "360463d62db146d1afc2a125128974e1",
                "parent_id": "2a0240a56056459e910cc4e214fbbecf",
                "user_id": null
            }
        },
        "new_state": {
            "entity_id": "input_number.garage_timer_input",
            "state": "5.0",
            "attributes": {
                "initial": -1,
                "editable": false,
                "min": -1,
                "max": 10000,
                "step": 1,
                "mode": "slider",
                "unit_of_measurement": "minutes",
                "friendly_name": "Garage Timer",
                "icon": "mdi:clock-outline"
            },
            "last_changed": "2020-03-09T20:10:12.628256+00:00",
            "last_updated": "2020-03-09T20:10:12.628256+00:00",
            "context": {
                "id": "1609617444f944449db733710284721a",
                "parent_id": "5869fcfcafff406b900e899d59baf3fe",
                "user_id": null
            }
        }
    },
    "origin": "LOCAL",
    "time_fired": "2020-03-09T20:10:12.628349+00:00",
    "context": {
        "id": "1609617444f944449db733710284721a",
        "parent_id": "5869fcfcafff406b900e899d59baf3fe",
        "user_id": null
    }
}


Posts: 1

Participants: 1

Read full topic

Text field

$
0
0

@Thuurke wrote:

Hello,

I currenlty use an automation which sends an notification and als fills a input_text on the frontend.
The input_text field can be altered. Is the an alternative for just static text (which only changes by the automation?

Posts: 1

Participants: 1

Read full topic

Integration "Tuya"

$
0
0

@Bryan_Zapata wrote:

I have a problem with Tuya integration in home assistant. I wrote the code to include the entities, but they don’t do the functionality. What I can do.

Posts: 3

Participants: 2

Read full topic

Hassos boot problem UI not coming up

$
0
0

@sender wrote:

Since this weekend, I have a very strange issue. My hassos with latest updates installed including HACS and some integrations which ran fine last month on esxi now won’t boot up normally anymore. I tried a lot… I have the Samba add on installed and that always comes online so I can see my config files etc.
The only way to get my 8123 interface back is to rename the custom_components folder to something else… then it boots up with UI (8123). I have 4 custom components (including HACS). If I only rename 1 folder in custom components it won’t start either.
If started I can rename back and start the entire system and only reboot home assistant (not hassos)… And then all is up.

I am desperate… don’t know how to troubleshoot and where to start…

Please help?

Posts: 1

Participants: 1

Read full topic

Imou IP camera configuration (always inactive)

$
0
0

@mabusdogma wrote:

Hello, I have an Imou Rager 2 IP camera. I can acess the stream via app, or using VLC with

rtsp://192.168.1.xxx:xxx/cam/realmonitor?channel=1&subtype=1

and i provide my username and pasword after that.

Well, the thing is… I’m trying to use it in HA (Hassio/docker in Lubuntu) and i configured yaml like this:

camera:
- platform: generic
  still_image_url: http://192.168.xxx.xxx:554/cam/realmonitor
  stream_source: rtsp://192.168.1.xxx:xxx/cam/realmonitor?channel=1&subtype=1
  name: imou
  username: admin
  password: xxx

But it always apear as “inactive” and even if everything is ok with the stream in VLC with the same rtsp…I can’t configure it in Home Assistant.

Does anyone know what to do?

Posts: 1

Participants: 1

Read full topic

Viewing all 108213 articles
Browse latest View live


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