Giter Club home page Giter Club logo

lacht_ha's Introduction

Lacht HA

With Home Assistant(HA) you can display your heatpump data in a nice way. Besides that you can of course also use ioBroker, python scripts (see above), or other smart home software. Here I explain only how setup your smart home using Home Assitant this includes:

  • heatpump (in my case a Weißhaupt one)
  • pv inverter, Photovoltaik - Solar panels
  • sensors (power meter, cameras, temperature sensors, eltako etc.)

Heatpump

Detailed instructions in the heatpump folder

Photovoltaik (PV)

comming soon

Detailed instructions in the pv

Other sensors

comming soon.

Detailed instructions in the sensors

How to configure HA

  • Download and install HA as docker or as full OS on a home server pc (that has to run full time!)
  • in HA: Settings Apps -> install Studio Code Server or File editor or use the

Addons I use

Samba Share

see here and here alt text alt text

umountha()
{
sudo umount -a -t cifs
}

mountha()
{
# Replace these with your actual values
SERVER_NAME="192.168.178.145"
SHARE_NAME="config"
MOUNT_POINT="/home/markus/Desktop/lachtHA/config"
USERNAME="your_username"
PASSWORD="your_password"

mkdir -p $MOUNT_POINT
if mount | grep -q "$MOUNT_POINT"; then
  echo "Share is already mounted at $MOUNT_POINT"
else
  echo "Share is not mounted --> Mount it"
  sudo mount -t cifs //$SERVER_NAME/config $MOUNT_POINT -o username=$USERNAME,password=$PASSWORD
fi
}

on 06.03 I got this error:

mount error: could not resolve address for 192.168.178.143:8123: Unknown error

Solution: Restart Smaba share did not work.... Reboot HA .... -> worked!

Visual Studio Addon

visual code extension

Multiple dashboard files

see here

# add this to your configuration.yaml
# use yaml mode for dashboards!
lovelace:
  mode: yaml

Restart from terminal

curl -X POST -H "Authorization: Bearer $(HA-APIKey)" \
     -H "Content-Type: application/json" \
     $(HA-URL)/api/services/homeassistant/restart
# alternatively:
hassio ha restart 

lacht_ha's People

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

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.