Giter Site home page Giter Site logo

homeassistant-config's People

Contributors

arsaboo avatar ciotlosm avatar grea09 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

homeassistant-config's Issues

Floorplan

Hi
I seee your configuration Home Assisnatnt and i have a question. In which software you create floorplan png ? It looks very good.

And from where you have download icon for state device on this floorplan ?

Units of measurement are inappropriately determined in getUnit

In ui/weather-card.js, several units of measurement are decided based upon whether lengthUnit is set to "km" -- which assumes that the provided data are either all metric or all imperial. The default weather source for hass.io is met.no, which supports mixed metric and imperial data. The result is that the Lovelace weather forecast card (https://www.home-assistant.io/lovelace/weather-forecast/) shows air pressure (which is provided in mbar by the data source) as inHg instead.

Each measurement needs to have its own associated unit tied to the unit of the original data source, particularly air pressure in this instance.

weather-card.js:304:

  getUnit(measure) {
    const lengthUnit = this.hass.config.unit_system.length;
    switch (measure) {
      case "air_pressure":
        return lengthUnit === "km" ? "hPa" : "inHg";
      case "length":
        return lengthUnit;
      case "precipitation":
        return lengthUnit === "km" ? "mm" : "in";
      default:
        return this.hass.config.unit_system[measure] || "";
    }
  }

Thanks for sharing and a little question ;)

Thanks for sharing your config files for HA, it helped me really to tweak better mine but I have a little question:

I have seen that you use a !secret tag for all credentials to avoid to store them in config file but where are they then ? I have checked your whole git repository but didn't find out how it works :(

Thankr for explanation ;)

Vincèn

Home assistant cast

Hello,
i'm trying to implement Home Assistan Cast on my environment and i would like to know if you can share how you configured it and how to implement the card you're using. How did you implement the "link" to Climate Control page?

Thanks,
Guido

Share Icond

Hi,

Could you please share your icons that you use for picture elements like:
/local/icons/tv_enabled.png

Regards,

Jack

Life360

Hi,

First of all great repo thanks for sharing.

I am trying to implement your life360 package, I have the .py and package installed. I have set the life360 user/pass in the sensor of the package I'm getting only 'error' from that sensor and its state is never updated so its subscribing to a mqtt topic that isn't being updated. I couldn't find in your repo where you have set the mqtt server details to subscribe to.

Thanks James

thanks a lot for sharing and questions dialogflows

Hello,

thanks a lot for the sharing, lot of interesting information lacking in the official documentation.

i got some question on dialogflow :

  • how did you link it with your alexa ou googlehome ?
  • do you got the annoying message telling you about "app test" too everytime it's invoked ?
  • could you share your dialogflow script on google ?

i still got trouble identify how we linked our dialogflow (hass side) setup with google dialogflow (google side) and our third party (google home or alexa).

if you got a great "howto/walkthrough" on this subject i would be very pleased !

thanks anyway for the sharing :)

Frontend.yaml

hello i am new to this and trying to add themes using your code for he Frontend.yaml but is giving me an error and i am not sure how to fix it or what I am doing wrong.

the error reads:
bad indentation of a mapping entry at line 2, column 9:
themes:
^
any help would be appreciated.

Thanks,

roberto.

Allergy Icons

Can you share the local icons you use for the pollen and cold-flu sensor displays?

Windy.com

how can we integrate windy.com weather of our city in HA i tried to copy my locations from windy.com and pasted as generic camera but its not working ?

Hikvision pythlon api

Hi arsaboo,

noticed you left an issue here
fbradyirl/hikvision#2

editing "/srv/homeassistant/lib/python3.6/site-packages/requests/utils.py" specifically the function "check_header_validity" to just return will fix the issue you had.

no doubt you have moved way past this 6 years later!!

Very good repo

Hi,i Am very new to HA and i decided to use yours as a starter!

I would like to use your home presence with bayesian sensor. I will have only 2 iphones at home. Which platform shell i use? thanks

Commute info

Thanks for sharing all your Home assistant setup files. Helps a lot to get some inspiring ideas.
I saw that you have a commute/travel panel. I think you can improve the commute time with real-time information by using the Google Distance Matrix information. Real-time traffic information is calculated into the total travel time. And there is a standard Component to use it. Take a look at it: Google Maps Travel Time

Unable to find your harmony config file

Hey Arsaboo,

Firstly, thank you for sharing your awesome HA configuration. Yours is the only which is a lot related to my setup and have a similar harmony hub integration so I wanted to re-use some of your code, however I am unable to find your harmony configuration file in the list. I am especially struggling with setting the volume on my harmony as my my config does not have a volume level command.

Would you be able to help?

Thanks,
Tariq

lyric custom comp.

When you create the API app on the honeywell lyric api site.. what is the callback URL to use?
I configure it in HA (request token) and it was a success (I can see the token / refresh toket / exp. date/time in the file), but I don't see any of my sesors (2x water leak detector) on the board even after a restart of HA.

The HA log file look like that :

2018-02-27 01:58:52 ERROR (MainThread) [homeassistant.components.climate] Error while setting up platform lyric
Traceback (most recent call last):
  File "/usr/lib/python3.6/site-packages/homeassistant/helpers/entity_platform.py", line 84, in async_setup
    SLOW_SETUP_MAX_WAIT, loop=hass.loop)
  File "/usr/lib/python3.6/asyncio/tasks.py", line 358, in wait_for
    return fut.result()
  File "/usr/lib/python3.6/asyncio/futures.py", line 245, in result
    raise self._exception
  File "/usr/lib/python3.6/concurrent/futures/thread.py", line 56, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/config/custom_components/climate/lyric.py", line 91, in setup_platform
    schema=RESUME_PROGRAM_SCHEMA)
TypeError: register() got multiple values for argument 'schema'

Running HA on rpi 3

// BTW, great stuff! Tks!

Weather Custom Card - Weather Icon

Expected Behavior

Weather is Sunny for a day in the week not today and the icon would be the Sunny Animated Icon while viewing at Night

(Every day that is not the current day would use the Day Icons instead of the Night Icons)

Current Behavior

Weather is Sunny for a Day in the week not today and the icon shows the current SunLocation Animated Icon while viewing at night

Screenshot of incorrect icon

I added the Time and Date into your card :)

Forecast that corresponds with screenshot above

I would expect it to only use the Sun Location on the current day of the week

Possible Solution

After the first element in the map, reset the SunLocation to sunny.

You could probably think of a better solution that is more dynamic

V

home-assistant-config

include assets/icons

Can you include assets/icons used for the picture elements card? They don't seem to be included in the HA install.

ip bans yaml

Sorry not an issue but needed to message you.

I was looking at my ngnix logs on a secure server and noticed that two ips have been attacking my service. These two IPs are on your ip bans .yaml. How is this list generated? Thanks

don't start

when i delete my .homeassistant dir and change with yours dir my home assistant don't start any more

run on raspberrypi b

Yr.no not working

Hi! First of all, good repo!

I am tring to replicate your yr.no forecast, in the configuration.yaml

  - platform: generic
    still_image_url: !secret meteogram_url
    content_type: 'image/svg+xml'
    name: Meteogram

I am using this URL:

https://www.yr.no/place/Spain/Madrid/Madrid/hour_by_hour.html

But its not working, Its displaying "image not available"

What am I doing wrong? Thanks!

play mp3 file

HI,
can you tell me how to play an mp3 file?
I installed hassio su rpi 3
the file is in the / config / www directory
I tried these 2 scripts without success:
alias: audio test
sequence:

  • service: media_player.play_media
    date:
    entity_id: media_player.primo
    media_content_id: /local/song.mp3
    media_content_type: 'music'
    And
    alias: audio test
    sequence:
  • service: media_player.play_media
    date:
    entity_id: media_player.primo
    media_content_id: /config/www/song.mp3
    media_content_type: 'music'
    can you help me?

add card-background-color style to (dark) themes

Need to add 'card-background-color' style to frontend.yaml themes.

go to Configuration -> Integrations -> click any integration (on a dark theme) and the background of the theme is the inherited ffffff default and most dark themes have ffffff for text.

Screenshot 2019-11-26 10 44 09

Abode broken [again]

I see that you are on version 0.69.0 but I am on 0.69.1 and I am getting this error in my logs. Are you getting anything similar? If so, I am just seeing what you might have done to fix it.

I attempted to unlock the door and it cannot find the service either. I just removed the custom_component that you orginially told me to do when the updates for 2FA came out a month or two ago. (Im not using 2FA).

2018-05-20 10:12:44 ERROR (MainThread) [homeassistant.setup] Error during setup of component abode
Traceback (most recent call last):
  File "/usr/lib/python3.6/site-packages/homeassistant/setup.py", line 145, in _async_setup_component
    component.setup, hass, processed_config)
  File "/usr/lib/python3.6/concurrent/futures/thread.py", line 56, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/lib/python3.6/site-packages/homeassistant/components/abode.py", line 136, in setup
    username, password, cache, name, polling, exclude, lights)
  File "/usr/lib/python3.6/site-packages/homeassistant/components/abode.py", line 97, in __init__
    get_automations=True, cache_path=cache)
TypeError: __init__() got an unexpected keyword argument 'cache_path'
2018-05-20 10:13:05 ERROR (Dummy-4) [homeassistant.core] Error doing job: Task was destroyed but it is pending!
2018-05-20 10:16:25 WARNING (MainThread) [homeassistant.core] Unable to find service lock/unlock

Sensor not updating

Hi
This component looks like exactly what I am looking for, but I am having problems getting my life360 sensor to update.
I have copied life360.py to my custom_components/sensor folder, and have the following entries in my configuration.yaml:

mqtt:
  embedded:
    listeners:
      default:
        max-connections: 5000
        bind: 192.168.1.36:1883
        type: tcp
      ws-1:
          bind: 192.168.1.36:8087
          type: ws
    auth:
      plugins: ['auth.anonymous']
      allow-anonymous: true
  broker: 192.168.1.36
  port: 1883
  
sensor:
  - platform: life360
    name: life360_ian
    username: "[email protected]"
    password: "mylife360password"
    mqtt_topic: "life360/ian"

device_tracker:
  - platform: owntracks

I can see the life360 sensor on my HA console, but it never gets updated. I'm running HA v0.65.0 on Lubuntu 16.10. MQTT seems to be running OK.
The only part of the instructions in your code that I didn't understand was the part that said I needed to copy the life360 package from your repository - I don't know what this means?(!)

Have you any idea why my life360 sensor is not getting updated?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.