Home Assistant

277 readers
3 users here now

Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY...

founded 3 years ago
MODERATORS
1
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/Niftyrider on 2026-06-21 10:00:27+00:00.

2
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/happybikes on 2026-06-21 07:51:51+00:00.

3
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/VincentJoshuaET on 2026-06-21 03:24:31+00:00.

4
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/maxi1134 on 2026-06-20 20:19:09+00:00.

5
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/Jax1030 on 2026-06-20 14:51:50+00:00.

6
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/aamat09 on 2026-06-20 07:06:04+00:00.


Got into a Baby tracker initially designed as a simple Dashboard and the reconstructed as a Home assistant Add On along with a custom built physical 3D printed trackpad to log all the baby events on the day, has been fun so far, even added display for reminders. Having a physical buttons has been a game changer and I have automations in place for notifying both phones and posted it directly to the echo show in the kitchen. since the trackpad sends directly to the mosquito broker.

https://preview.redd.it/cdddqe7uzd8h1.jpg?width=665&format=pjpg&auto=webp&s=4457cdbe3f13cb896c17709a4472a7dd76116a48

https://preview.redd.it/fpmhqdyyzd8h1.png?width=1012&format=png&auto=webp&s=8f30bf18898b098f55d8534163abe6871012d9c9

repo for the add on: https://github.com/hms-homelab/hms-baby-tracker/

7
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/genz123 on 2026-06-20 23:56:53+00:00.

8
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/Gullible_Low_1742 on 2026-06-21 05:08:12+00:00.

9
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/hometechgeek on 2026-06-20 19:43:29+00:00.

10
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/techma2019 on 2026-06-20 18:43:08+00:00.

11
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/Limp_Difficulty6015 on 2026-06-20 18:23:42+00:00.

12
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/OccupyElsewhere on 2026-06-20 06:53:49+00:00.


Did a bit of an "oops" a couple days back. Wanted to delete a device in ZHA so I could rejoin it where it will actually be in the network. Hamburger menue, delet, confirm. Did it so quickly I had missed the device and did the integration instead ๐Ÿ˜ฎ.

A bit of googling and reading, trying to recover the ZHA setup. Seemed a little difficult and fraught with bad outcomes.

Ended up just selecting my HA daily backup and restoring to that. An hour later everything was back to normal.

The moral of the story is to have a backup done regularly. Either that or have a grief counsellor ready on speed-dial.

13
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/gt1 on 2026-06-20 04:57:38+00:00.


https://preview.redd.it/9wjd1bbgcd8h1.png?width=647&format=png&auto=webp&s=e7194dd09d10ba8bdd8b9c3580cdb8b952d7750a

I have to admit, I panicked and restored from a day old backup. Lost a couple of changes and a day worth of energy data. Should've done another backup and attempted to repair without rolling back.

14
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/fastender on 2026-06-19 23:52:41+00:00.

15
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/Otavio_B on 2026-06-19 19:12:12+00:00.

16
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/TeroFinland on 2026-06-19 17:03:59+00:00.


This sort of escalated. I got myself an IKEA Mittzon motorized standing desk. Two memory positions and up / down buttons, nothing fancy. As usual, started to browse interwebs but found out IKEA uses some almost proprietary OEM (likely) controller with very little information decoded. Then I found this Github repo with everything I needed.

One EPS32-S3 Super mini later the table was controllable from Home Assistant. Good starting point.

Tips at this point:

  • Voltage, Ground and RX-pin can all be taken from ROL-controller (the "button-box"), no need to fiddle with anything else
  • Good soldering skills needed

Ok. Now it was controllable. Since I had some CYD 2.8" ESP32-2432S028 touchscreens around things quickly escalated, here's the result:

IKEA Mittzon HA-controller

Normal UP/Down-buttons, and both memory buttons. Added height-information since it was available, updates pretty much in real-time when table height is adjusted.

IKEA Mittzon HA-controller with added "set memory position"

One thing the integration was missing was the "set memory position" since the "M1" and "M2" buttons did not have hold, only momentary. So I made two more buttons to ROL-interface so those can then be controlled from controller with long press activating separate button.

In qbus-desk.yaml add these buttons to the end:

- platform: template

name: "Set M1"

icon: mdi:numeric-1-box

on_press:

- output.turn_on: btn_m1_out

- delay: 3200ms

- output.turn_off: btn_m1_out

- platform: template

name: "Set M2"

icon: mdi:numeric-2-box

on_press:

- output.turn_on: btn_m2_out

- delay: 3200ms

- output.turn_off: btn_m2_out

As seen, those keep the GPIO-output active for 3.2 seconds, the desk expects 3+ seconds for setting memory.

Also found a really functional and excellent desk mount for the display in Makerworld to print. Came out really great. Pic also shows a bit of the original controller pushed back, the ESP32-S3 under it and the power from ESP32-S3 to CYD. (Everything is powered from the ROL-controller, no extra power supplies needed.)

IKEA Mittzon HA-controller desk mount

Current functions in the controller:

  • Move desk up and down, moves as long as you press button, as original controller, beep when pressed
  • Short press on M1 and M2 moves table to set memory positions, beep when pressed, double beep and visual confirmation when reached, as original controller (minus audio)
  • Long press on M1 and M2 to store memory positions, beep when pressed, double beep and visual confirmation when reached, as original controller (minus audio)
  • Short press on height takes to another touchscreen page with some light controlling
  • Long press on height restarts touchscreen ESP32

This was a really fun two evening project, thought to share since there seems not to be too much IKEA Mittzon info out here.

17
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/No-Pain5579 on 2026-06-19 12:23:32+00:00.


Hi all,

I live in the Schiphol neighbourhood, and two things kept bugging me: I wanted to know whether the runway pointed at my house is currently in use, and when I head out for a walk in the Amsterdamse Bos I'd love to pick a moment when it's not directly under the flight path โ€” so I can enjoy the walk without aircraft noise overhead. So I built this.

It's a custom integration (plus a companion Lovelace card) that shows which runways are currently in use at Amsterdam Airport Schiphol (EHAM).

What it does

  • One sensor per runway (6 total), each showing not_in_use, inbound (landing), or outbound (takeoff)
  • Attributes for the active heading, so you can build precise automations
  • Inbound/outbound peak sensors (binary sensors) for Schiphol's busy periods
  • Updates every 5 minutes from public LVNL data โ€” no API key needed
  • Fully UI-configurable, installable via HACS

Companion dashboard card

A separate Lovelace card draws a live SVG map of all six runways, color-coded by status, with little airplane icons pointing in the direction of traffic and peak indicators. Theme-aware, with an optional satellite background and a visual config editor.

Card preview

Example uses: get a notification when the runway closest to you starts being used for landings (and another when it stops) โ€” or check before a walk in the Amsterdamse Bos whether the nearby runway is active.

Links

Both install through HACS as custom repositories (the integration under Integrations, the card under Frontend โ€” HACS requires them to be separate repos).

Feedback and issues welcome. Data comes from LVNL via dutchplanespotters.nl; not affiliated with LVNL or Schiphol.

18
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/Roxbros on 2026-06-19 21:21:24+00:00.

19
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/update-freak on 2026-06-19 09:48:59+00:00.


Hi, whats you favorite HACS, Addons, blue prints. Idea is to have some inspiration. Maybe you have also some good additional items. Thanks. I personally use these:

HACS

  • Deutscher Wetterdienst -> weather
  • HyperHDR -> Control Ambilight on RPi
  • Kiosk Mode -> Hide menu for specific users
  • MyJDownloader -> JDownloader status
  • Powercalc -> power calc for static devices, e.g. Router
  • Spook -> find errors in configuration

Addons (additional):

  • Home-Assistant-Matter-Hub -> connect Google Home to Home Assistant
  • Mosquitto broker -> for Zigbee
  • Zigbee2MQTT -> for Zigbee devices

blue prints:

  • Notify when a maschine finishes -> when washmaschine is finished
  • Scheduled auto-update for Home Assistant -> automatic updates
20
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/zeekaran on 2026-06-19 14:13:28+00:00.

21
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/Buttershy- on 2026-06-19 15:04:59+00:00.

22
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/exenper on 2026-06-19 14:55:40+00:00.

23
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/Vegetable-Sweet9528 on 2026-06-19 11:52:11+00:00.

24
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/RichMansToy on 2026-06-19 00:13:33+00:00.

25
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/missyquarry on 2026-06-19 09:27:03+00:00.


The most sustainable device is the one you already own. ๐ŸŒ

That's why our recent releases of Home Assistant and ESPHome help you bridge the gap between your smart devices and older, offline protocols.

Click the blog link to read more. ๐Ÿ˜Œ

view more: next โ€บ