All Projects → cyberjunky → home-assistant-custom-components

cyberjunky / home-assistant-custom-components

Licence: MIT License
My custom components for Home Assistant

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to home-assistant-custom-components

Ha Tts Bluetooth Speaker
TTS Bluetooth Speaker for Home Assistant
Stars: ✭ 140 (+100%)
Mutual labels:  internet-of-things, home-assistant
Homeassistant
Example Home Assistant Configs
Stars: ✭ 168 (+140%)
Mutual labels:  internet-of-things, home-assistant
Smarthome Homeassistant Config
🏠 My Home Assistant configuration. This repo will be archived 🗄️ in the future
Stars: ✭ 152 (+117.14%)
Mutual labels:  internet-of-things, home-assistant
Home Assistant Config
🏠 My Home Assistant configuration, a bit different that others :) Be sure to 🌟 this repository for updates!
Stars: ✭ 1,050 (+1400%)
Mutual labels:  internet-of-things, home-assistant
hifiberry
This is a custom component to allow control of HifiberryOS devices in Home Assistant using the audiocontrol2 REST API.
Stars: ✭ 26 (-62.86%)
Mutual labels:  internet-of-things, home-assistant
Home Assistant Js Websocket
🚡 JavaScript websocket client for Home Assistant
Stars: ✭ 100 (+42.86%)
Mutual labels:  internet-of-things, home-assistant
Home assistant files
Here are my Home Assistant configuration files
Stars: ✭ 159 (+127.14%)
Mutual labels:  internet-of-things, home-assistant
Awesome Home Assistant
A curated list of amazingly awesome Home Assistant resources.
Stars: ✭ 3,487 (+4881.43%)
Mutual labels:  internet-of-things, home-assistant
Netdisco
🔎 Python library to scan local network for services and devices.
Stars: ✭ 240 (+242.86%)
Mutual labels:  internet-of-things, home-assistant
Homeassistant Config
Stars: ✭ 211 (+201.43%)
Mutual labels:  internet-of-things, home-assistant
Homeassistant
Example Home Assistant Configs
Stars: ✭ 846 (+1108.57%)
Mutual labels:  internet-of-things, home-assistant
home-assistant-notebooks
📓 Sample Jupyter Notebooks to explore Home Assistant data
Stars: ✭ 49 (-30%)
Mutual labels:  internet-of-things, home-assistant
Home Assistant Config
Home Assistant config files, rewritten to use the latest features, 100+ documented automations, automatically generated ToC 🏠 🤖
Stars: ✭ 926 (+1222.86%)
Mutual labels:  internet-of-things, home-assistant
Ha Floorplan
Floorplan for Home Assistant
Stars: ✭ 1,626 (+2222.86%)
Mutual labels:  internet-of-things, home-assistant
Esphome Core
🚨 No longer used 🚨 - The C++ framework behind ESPHome
Stars: ✭ 545 (+678.57%)
Mutual labels:  internet-of-things, home-assistant
Entity Controller
Entity and lighting controller for managing devices via timers, scripts, and sun-based time restrictions.
Stars: ✭ 156 (+122.86%)
Mutual labels:  internet-of-things, home-assistant
aioesphomeapi
Python Client for ESPHome native API. Used by Home Assistant.
Stars: ✭ 52 (-25.71%)
Mutual labels:  internet-of-things, home-assistant
Home Assistant
Home-Assistant-Config
Stars: ✭ 182 (+160%)
Mutual labels:  internet-of-things, home-assistant
netdisco
🔎 Python library to scan local network for services and devices.
Stars: ✭ 252 (+260%)
Mutual labels:  internet-of-things, home-assistant
jarvis
Jarvis Home Automation
Stars: ✭ 81 (+15.71%)
Mutual labels:  internet-of-things, home-assistant

made-with-python Donate

My Home-Assistant Custom Components

Some of my custom components for home-assistant. (http://www.home-assistant.io)

Moved to it's own repository and made HACS compatible:

You can find them in HACS under 'integrations'

To be worked on:

Deprecated:

SolarPortal sensor component

NOTE: API seem to have changed, need new reverse engineering!

Dear Customers,

Omnik old version APP has removed,and no running anymore. Please download new APP version (Omnik Portal) from the App Store.

If you use Android system, please go to Google play download: "Omnik Portal" https://play.google.com/store/apps/details?id=com.jialeinfo.omniksolar&hl=en

If you use iOS system, please go to iOS App store download: "Omnik Portal" https://itunes.apple.com/cn/app/id1246117091

Thank you so much for your notice. Omnik Team

Battefield1 Stats component

NOTE: Network is shutdown.

As of October 27, 2019 the P-Stats Network has shutdown.

Fritzbox_callmonitor Notification example

This is not a new component but an example automation config useable together with the fritzbox_callmonitor component. The example below will generate several messages depending on status of the event.

# Example configuration.yaml entry

- platform: fritzbox_callmonitor
# Example automation.yaml entry

- alias: 'Phone Status'
  trigger:
    platform: state
    entity_id: sensor.phone
  action:
    - service: notify.pushover
      data:
        title: "Phone"
        message: >
          {% if is_state( "sensor.phone", "ringing" ) %}
            {% if states.sensor.phone.attributes.from %}
              Ringing on incoming call from {{ states.sensor.phone.attributes.from }}.
            {% else %}
              Ringing on incoming call from an Unknown or Hidden number.
            {% endif %}
          {%-elif is_state( "sensor.phone", "talking" ) %}
            Call answered.
          {%-elif is_state( "sensor.phone", "dialing" ) %}
            Calling {{ states.sensor.phone.attributes.to }} with {{ states.sensor.phone.attributes.device }}.
          {%-elif is_state( "sensor.phone", "idle" ) %}
            {% if states.sensor.phone.attributes.duration | int > 59 %}
              Phone call ended, duration was {{ (float(states.sensor.phone.attributes.duration) / 60) | round }} Minute(s).
            {% else %}
              Phone call ended, duration was {{ states.sensor.phone.attributes.duration }} Second(s).
            {% endif %}
          {% endif %}

Remarks component

This component fetches random tags from files to be tweeted. The data files are taken from misterhouse, so al courtesy goes to that project. Currently there are two types of remarks implemented, random daily one taken from file specified in config. And outside temperature based.

Installation

  • Copy file remarks.py to your <config dir>/custom_components directory.
  • Copy the data directory remarks to your <config dir> directory.
  • Configure with config below.
  • Restart Home-Assistant.

Usage

To use this component in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry

remarks:
   file: 1100tags.txt
   hour: 9
   minute: 0
   outside_temp_sensor: sensor.pws_temp_c
   cold_threshold: 5
   freeze_threshold: -5
   temp_hour: 6
   temp_minute: 30

Configuration variables:

  • file (Optional): The file we want to pick a random tag from, one from the remarks directory. (default = 1100tags.txt)
  • hour (Optional): The hour on which we want to generate a random tag. (default = 9)
  • minute (Optional): The minute on which we want to generate a random tag. (default = 0)
  • outside_temp_sensor (Optional): Sensor device to use to get the outside temperature. (default = sensor.pws_temp_c)
  • cold_threshold (Optional): Below this temperature a tag will be picked from the list_temp_below_20.txt. (default = 5)
  • freeze_threshold (Optional): Below this temperature a tag will be picked from the file list_temp_below_0.txt. (default = -5)
  • temp_hour (Optional): The hour on which we want to generate a temperature remark if it is below thresholds. (default = 6)
  • temp_minute (Optional): The minute on which we want to generate a temperature remark. (default = 30)

Now for both tags an event will be fired.

You can trigger on this with automation rules. For example you can send them as tweets, to do so place this in your automation.yaml

# Example automation.yaml entry

- alias: Tweeting Remarks
  trigger:
    platform: event
    event_type: remarks
  action:
  - service_template: notify.twitter
    data_template:
      message: "{{ trigger.event.data.text }}"

Volkswagen Carnet component

Cloned from https://github.com/robinostlund/homeassistant-volkswagencarnet

So all credits to Robin Ostlund.

I stripped out non supported stuff to get it to work with my VW T-ROC.

This also needs a modified volkswagencarnet python module!

# Example configuration.yaml entry

volkswagencarnet:
    username: [email protected]
    password: yourpassword
    update_interval: 
      minutes: 5
    resources:
      - last_connected
      - position
      - distance
      - fuel_level
      - service_inspection
      - oil_inspection
      - parking_light
      - doors_locked
      - trunk_locked
      - combined_range

Configuration variables:

  • username (Required): Your email address for carnet portal.
  • password (Required): Your password for carnet portal.
  • minutes (Required): Update every x minutes, minimum is 3.
  • resources (Required): Values to fetch.

TODO for most of above components

  • Make the components work async.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].