Home Assistant

412 readers
1 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 2 years ago
MODERATORS
801
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/rogierlommers on 2025-05-17 08:35:56+00:00.


Every now and then I'm in a situation where an integration "needs attention". Sometimes it takes quite a while before I notice this. Therefore my question: would it be possible to receive an alert when this happens?

https://preview.redd.it/sd09ql1b0b1f1.jpg?width=2104&format=pjpg&auto=webp&s=45ba6c98b4427060cce933fd9daea812accb9219

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

The original was posted on /r/homeassistant by /u/ifight4theusername on 2025-05-17 01:23:16+00:00.


This took me hours of searching around to figure out, even though I've seen dozens of similar threads where people were looking to do this. So here it is, all the pieces you need in one place to make this work. Also, a little background on pressure and flow in case you don't know. With all of your faucets closed, no water flowing, you're basically going to have the exact same pressure everywhere. It isn't until you have flow that a pressure differential will form. The bigger the flow, the higher the pressure drop across the restriction (your filter). This drop will gradually get bigger and bigger as the filter gets clogged. There are a lot of factors here, but my system with new filters is around 2.5 psi drop with the bath tub on full blast (not shower head).

  • Hardware:
    • ESP32 (or whatever ESPHome device you want that is I2C capable)
    • ADS1115 (I ordered a few off of amazon)
    • Pressure sensor (I ordered 2 Autex 150psi sensors off of Amazon, mainly because they were cheap. They take 5V instead of the 3.3V the ESP is happy with, so the ADS1115 provides a 5V capable reading, plus a lot better ADC than the one in the ESP)
    • Whatever plumbing fittings you need to attach a sensor before and after your filter setup (the sensors I used are 1/8" NPT)
    • Some sort of breadboard and wiring to connect everything. I highly recommend soldering everything for the final product and not using the solderless breadboards. I know from past projects those can do very weird things when you have radio signals near them and/or doing things at frequencies higher than 1Hz. I did prototype on a solderless breadboard though at 1Hz sample rate.
    • My "final" product is a soldered protoboard, with all of the wiring covered in hot glue, wrapped in layers of electrical tape. Nothing but the finest workmanship
    • A USB power supply (mine is USB C, 2A capable but this is super overkill for this circuit)

solderless breadboard prototype

"Conformal coating"

Crawl space ready hardware

  • Software:
    • I'm not going to show you how to flash ESPHome, there are plenty of tutorials out there. Just get your ESP device talking on ESPHome with your HomeAssistant instance. I named mine "ESP_Water_Pressure" if you want to copy that so you can just copy pasta my code

Step 1: There are 4 wires to connect from your ESP to your ADS1115. Look at the pinout sheets for both of your devices, connect the 4 wires below to each component:

ESP -> ADS1115

5V -> 5V (VDD)

GND -> GND

SCL -> SCL

SDA -> SDA

Step 2: On the ADS1115, I wired the pre-filter sensor to A0, and the post filter sensor to A1. Follow that order if you want to copy pasta my code. The sensors have three wires, one 5V, one ground, and one signal. The signal wire goes to A0 or A1, then connect the 5V and ground wires to the power and ground from your ESP.

Step 3: Here's the code for your ESPHome device. Read through the comments for explanations or things you should change

#Use your board populated values except the friendly name
esphome:
  name: esphome-web-4f1d78
  friendly_name: ESP_Water_Pressure
  min_version: 2024.11.0
  name_add_mac_suffix: false

#Use your board populated values
esp32:
  board: esp32dev
  framework:
    type: esp-idf

# Enable logging
logger:

# Enable Home Assistant API
api:

# Allow Over-The-Air updates
ota:
- platform: esphome

#Change these values if you are not using the secret file, if you are make sure the names match
wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

# Make sure you change the GPIO pins to match the ESP board you are using
i2c:
  sda: GPIO21
  scl: GPIO22
  scan: true
  id: bus_a

#Config for the ADS1115, default address (not using multiple ADS1115s)
ads1115:
  - address: 0x48
sensor:
  #First sensor, pre filter
  - platform: ads1115
    #Choose the pin you want to use for the first sensor
    multiplexer: 'A0_GND'
    #This is the default gain, idk why, it works
    gain: 6.144
    name: "Pre-filter Water Pressure"
    #Read at 100Hz
    update_interval: 0.01s
    filters: 
      #Take 100 samples, average them together, then report every second. I had a lot of noise just using 1 or 10Hz. 
      - median:
          window_size: 100
          send_every: 100
          send_first_at: 1

      #Change this calibration if your sensor data is different, left side is voltage, right is PSI
      - calibrate_linear: 
          method: exact
          datapoints:
          - 0.5 -> 0.0
          - 2.5 -> 75.0
          - 4.5 -> 150.0
        
    unit_of_measurement: "PSI"
    #Only displays 2 decimals on dashboard but doesn't change reported value 
    accuracy_decimals: 2
    #This shows a gauge on the dash, nice to have
    device_class: pressure

  #Second sensor, same as the first except the name and multiplexer pin
  - platform: ads1115
    multiplexer: 'A1_GND'
    gain: 6.144
    name: "Post-filter Water Pressure"
    update_interval: 0.01s
    filters: 
      - median:
          window_size: 100
          send_every: 100
          send_first_at: 1

      - calibrate_linear: 
          method: exact
          datapoints:
          - 0.5 -> 0.0
          - 2.5 -> 75.0
          - 4.5 -> 150.0
        
    unit_of_measurement: "PSI"
    accuracy_decimals: 2
    device_class: pressure    

    

#Use your board populated values except the friendly name
esphome:
  name: esphome-web-4f1d78
  friendly_name: ESP_Water_Pressure
  min_version: 2024.11.0
  name_add_mac_suffix: false

#Use your board populated values
esp32:
  board: esp32dev
  framework:
    type: esp-idf

# Enable logging
logger:

# Enable Home Assistant API
api:

# Allow Over-The-Air updates
ota:
- platform: esphome

#Change these values if you are not using the secret file, if you are make sure the names match
wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

# Make sure you change the GPIO pins to match the ESP board you are using
i2c:
  sda: GPIO21
  scl: GPIO22
  scan: true
  id: bus_a

#Config for the ADS1115, default address (not using multiple ADS1115s)
ads1115:
  - address: 0x48
sensor:
  #First sensor, pre filter
  - platform: ads1115
    #Choose the pin you want to use for the first sensor
    multiplexer: 'A0_GND'
    #This is the default gain, idk why, it works
    gain: 6.144
    name: "Pre-filter Water Pressure"
    #Read at 100Hz
    update_interval: 0.01s
    filters: 
      #Take 100 samples, average them together, then report every second. I had a lot of noise just using 1 or 10Hz. 
      - median:
          window_size: 100
          send_every: 100
          send_first_at: 1

      #Change this calibration if your sensor data is different, left side is voltage, right is PSI
      - calibrate_linear: 
          method: exact
          datapoints:
          - 0.5 -> 0.0
          - 2.5 -> 75.0
          - 4.5 -> 150.0
        
    unit_of_measurement: "PSI"
    #Only displays 2 decimals on dashboard but doesn't change reported value 
    accuracy_decimals: 2
    #This shows a gauge on the dash, nice to have
    device_class: pressure

  #Second sensor, same as the first except the name and multiplexer pin
  - platform: ads1115
    multiplexer: 'A1_GND'
    gain: 6.144
    name: "Post-filter Water Pressure"
    update_interval: 0.01s
    filters: 
      - median:
          window_size: 100
          send_every: 100
          send_first_at: 1

      - calibrate_linear: 
          method: exact
          datapoints:
          - 0.5 -> 0.0
          - 2.5 -> 75.0
          - 4.5 -> 150.0
        
    unit_of_measurement: "PSI"
    accuracy_decimals: 2
    device_class: pressure    

Now you should have sensor data you can add to your dashboard and track... except wouldn't it be way easier to just subtract the values and set an alert when the pressure drop hits a certain PSI? Great, let's do that with a helper. Oh wait, it's 2025 and you CAN'T SUBTRACT TWO VALUES WITH A HELPER?!!?!?!

Fine, let's learn how to make a template sensor.

Step 4: Subtraction is hard. We have to use some YAML to do it. In Home Assistant, go to Settings -> Devices & Services -> Helpers tab -> Create Helper -> Template -> Template a Sensor. If you copied all of my names directly, you can just paste this into the "State template" but make sure you get the name of your device correct.

{{ states('sensor.esphome_web_4f1d78_pre_filter_water_pressure') | float(0) - states('sensor.esphome_web_4f1d78_post_filter_water_pressure') | float(0) }}

Choose psi for unit of measurement, pressure for Device class, measurement for state class, and choose the name of your ESP device for the Device. Your config should look like this:

https://preview.redd.it/y5ht1c9zt81f1.png?width=574&format=png&auto=webp&s=25d19a39a3d381e9605e3fcda72caf531d09da7a

Now you notice that we have way too many decimals... the easiest way I found to "fix" this is to just submit the template, then in your list of helpers, click the options on the template sensor we just made, go to Settings, then in the fourth dropdown box, change the display precision and hit update.

Step 5: slap ...


Content cut off. Read original on https://old.reddit.com/r/homeassistant/comments/1koh7ua/tutorial_esphome_dual_water_pressure_sensors_with/

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

The original was posted on /r/homeassistant by /u/prevoyant- on 2025-05-16 18:57:23+00:00.

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

The original was posted on /r/homeassistant by /u/MirCore on 2025-05-16 13:24:02+00:00.


Hey everyone,

I’ve been working on a little side project and wanted to share it here: Home Overlay – a free, open-source Vision Pro app that brings your Home Assistant setup into mixed reality.

With it, you can:

  • Control your lights and switches using real-world gestures
  • Place smart home panels (like weather or calendar) into your room
  • Adjust brightness and color in real time
  • Panels remember their position and stay anchored, even after restarting
  • Everything runs locally via Home Assistant’s REST API – no cloud, no tracking

If you actually have a Vision Pro 😅, you can grab the app here:

📱 Home Overlay on the App Store

Source code and more details:

🧑‍💻 GitHub Repo

Would love feedback if anyone gives it a try!

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

The original was posted on /r/homeassistant by /u/gh0st_24 on 2025-05-16 10:43:38+00:00.


Still learning when it comes to Home Assistant but can we just talk about how great the Reolink integration is on Home Assistant. Just purchased a Reolink E1 Zoom as a baby monitor when at home and was properly surprised with how well it integrates with Home Assistant

I basically have access to every feature and setting on the reolink app giving me the ability to go fully local. Imagine a world where every company gave us this option.

Seriously thinking about selling my Eufy Outdoor Cameras and switching to Reolink.

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

The original was posted on /r/homeassistant by /u/da_syggy on 2025-05-16 06:03:56+00:00.


Warning: a slightly longer story - but maybe others can learn from that :)

Holy moly - I just had one of these rare "what the heck is going on" moments with HA that started innocently and escalated quickly:

My wife told me that our vacuum won't run for the last couple of days. Usually she starts it by using a wall mounted tablet that displays HA dashboards (no automations for the vacuum, because: kids & toys on the floor...)

I checked and the vacuum wasn't available in HA (Dreame with valetudo integrated via MQTT to HA) - so I did the obvious: checked the vacuum directly via valetudo - it is fine.

Was to lazy to dig deeper and just restarted HA - nothing, still won't work.

Checked my other valetudo-equipped vacuum - also disconnected from HA.

The next logical step was to check if MQTT works, so I went to the MQTT explorer, only to be greeted with a blank screen and a strange error message.

I got a bit nervous.

Next I tried to open the Add-on page to check if the broker is running - also blank.

Slight panic.

Went to the backup tab to check if the backups are ok, just in case. No backups visible there and also an error message that there are no network drives available.

Sweaty hands.

Tried looking into the logs - blank screen, don't even remember if there was an error message. Next I tried checking the storage tab. Some errors again, no disks and no information.

Got this strange feeling that runs up and down your back until it reaches up to your ears, which then start to feel really hot

I checked my google drive - last backup from a couple of days ago - so slight relief, I calmed down slightly. Also my Ubiquity Controller, which runs as an add-on in HA, worked. So not everything was broken. Fine - but what the heck is going on?

And why did the backups stop working 4 days ago - which seems to be same time the vacuums stopped being available? What did I change? The last HA upgrade was more than 4 days ago... so that couldn't be it. I haven't touched anything in the meantime...

A few moments of confusion - mixed with paranoia as I work in IT Security and you can't rule out some attack either, especially when you are confronted with strange behavior over different areas of your system.

Then I remembered that I got a notification from my Synology NAS that I have outdated packages a few hours ago - usually this is some sort of media app or similar. I thought: Maybe, just maybe this might have something to do with it as I run HA as a VM on my NAS - so I logged into it and lo and behold: There was an update to the SAN package which wasn't done automatically as it is also related to the virtual machine management.

So I hit the update button. A couple of minutes passed - the package got updated, the virtual machine management restarted and my HA VM booted up again.

No error in the console of the HA VM - slight hope.

It felt like ages as I waited for HA to start - one by one the integrations came up.

Backups are there again. Storage seems fine. MQTT broker started up and the vacuums are there again!

Finally - everything works again. And I think I need a shower :)

Maybe a simple reboot of the HA VM would also have helped... who knows. This is IT. Nothing is straight forward in IT. Even as an IT professional for 26 years, who is working with large enterprises and has seen all sorts of really bad stuff these situations still get me. But IT has told me one thing: the root cause of an issue is usually something miniscule, obscure, and seemingly unrelated to the symptoms. And you have to somewhat keep a cool head and dig systematically using logic and knowledge.

Because if I just google the first error message I saw I just get to a forum thread from 4 years ago which is several pages and leads to nothing because it isn't even remotely the same issue as I had, just a similar symptom - the same error.

Long story short: Have you tried turning it off and on again?

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

The original was posted on /r/homeassistant by /u/Technical_Raisin_246 on 2025-05-15 18:34:23+00:00.

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

The original was posted on /r/homeassistant by /u/chimph on 2025-05-15 19:25:47+00:00.

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

The original was posted on /r/homeassistant by /u/wwwescape on 2025-05-15 17:05:20+00:00.


Hi everyone!

I've been working on a custom Home Assistant card called Sky Tonight Card, and I'm excited to share it with you.

🪐 What it does:

This card displays the visibility of the sun, moon, and planets from your location, using the excellent Astronomy Engine under the hood. It shows rise/set times, visibility windows, and moon phases – all in a clean and informative UI.

🔭 Features so far:

  • Rise and set times for the sun, moon, and major planets
  • Visibility duration and icons for each object
  • Moon phase display
  • Works with Home Assistant's location or custom lat/lon
  • Optional binocular visibility indicators

🛠 Repo:

You can check it out here:

👉 https://github.com/wwwescape/sky-tonight-card

https://preview.redd.it/j3iy6gwz9z0f1.png?width=520&format=png&auto=webp&s=375892199d390b170f6ed0f9417039163a0d33f2

📦 HACS Support:

Not in HACS yet, but I plan to submit it soon. For now, you can install it manually via the instructions in the repo.

I'd love your feedback, suggestions, or ideas for improvement. If you try it out, let me know how it looks with your setup!

Clear skies! ☀️🌙🔭

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

The original was posted on /r/homeassistant by /u/OkPalpitation2582 on 2025-05-15 14:07:17+00:00.


So for context, my wife and I have a 3 month old. As any parents here know well, that means lots of getting up in the middle of the night. My goal is to setup an automation triggered when the last person gets up in the AM (usually, one of us is up around 5-6 with the baby, while the other “sleeps in” until 7ish).

My first attempt at this was to go off of our phone’s charging statuses, and when both phones are off their chargers in the am at the same time, fire a “wake_up” event. This works great when I’m the one waking up last, but I’ve found that often times when my wife does baby duty in the middle of the night, she often doesn’t put her phone back on the charger, so if I’m the one on baby wake-up duty, and she did a late night baby duty the previous night, the automation doesn’t trigger

Obviously I’m not going to nag her to remember to put her phone on the charger at 2am just so my automations work, so I’m curious if anyone here has come across any good methods of tracking wakeups that aren’t reliant on phone charging statuses?

UPDATE - lot's of great suggestions, thanks everyone! I think I'm going to try putting a sensor on the bedroom door since we always keep it closed while sleeping, and setting the event to trigger once the door has been left open for 5 minutes

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

The original was posted on /r/homeassistant by /u/No-Cartographer2925 on 2025-05-15 08:37:04+00:00.


I’m trying to DIY my setup a bit. Just bought an Acemagic M1 mini PC and planning to upgrade my router using a dual-NIC box running OPNSense. Running all my planned features on the new box might throttle VPN + firewall performance and hurt throughput when accessing remotely. So I’m thinking of keeping the mini PC online to run things like HomeAssistant, Pi-hole, and NUT. Does that sound like a reasonable setup to you folks?

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

The original was posted on /r/homeassistant by /u/Effective_Run_4364 on 2025-05-15 08:31:35+00:00.


Newbie here. I’ve got my Home Assistant dashboard on an Android tablet running Fully Kiosk, and I want the tablet to announce some things for example, “Laundry is done!” when a sensor flips state.

Could someone spell out the basic logic for getting the tablet to talk and share how you’ve accomplished it? I’m not sure if there’s a direct integration path or if I need to combine a media_player, and automations in a certain way. Any real-world examples or pitfalls to avoid would be super helpful.

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

The original was posted on /r/homeassistant by /u/ThrCyg on 2025-05-15 07:29:40+00:00.

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

The original was posted on /r/homeassistant by /u/munkisquisher on 2025-05-15 00:51:16+00:00.


Had a SSD main drive die on on my NUC running HA this week. First up HA kept serving the dashboard and most sensors kept working. Got a huge string of errors about the recorder and "config.yaml not found" and other worrying errors. But the thing kept running without any filesystem! I tried to restart it and it said it couldn't restart due to the config being invalid.

So after replacing the drive, following the install instructions to image the drive and booting for the first time. I was presented with a "restore from nabu casa cloud" option! Last time I had to reinstall was when I moved from a Pi to the NUC and you had to install the whole OS, create an account, get it online, copy over the backup file somehow (I think I set up the google drive addon to pull down my latest) and then get into your settings to restore from that backup.

So Kudos to the HA team for making it so seamless! It's come a long way.

And if you are reading this, why didn't the network settings (static IP I had before) or my network shares get restored too? They are the only things I can see that are missing.

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

The original was posted on /r/homeassistant by /u/Top_Recognition_81 on 2025-05-14 22:01:46+00:00.


I wonder if the Matter integration is good enough or we should still rely on third part apps.

  • How are your experiences with Matter?
  • How is compared to the third party app?
816
 
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/scharc on 2025-05-14 19:52:58+00:00.


Hey Home Assistant community!

I'd like to share a new Lovelace card I created with AI assistance that might be useful for many of you. The Entity Exporter Card is now available as a HACS custom repository.

Entify Exporter Card

What is Entity Exporter Card?

It's a simple but practical tool that lets you filter and export Home Assistant entities as JSON. I built it specifically to help provide context when asking AI systems for help with Home Assistant:

  • When creating complex automations and scripts
  • While troubleshooting configuration issues
  • For understanding relationships between entities
  • To get more accurate recommendations

Key Features:

  • 🔍 Filter entities by domain (lights, switches, sensors, etc.)
  • 🔄 Add multiple text filters with OR logic
  • ⚡ Live filtering preview as you type
  • 📋 Copy to clipboard (auto-detects if you're in HTTPS/secure context)
  • 💾 Download as JSON file
  • 🔢 Real-time entity counter showing filtered vs. total entities

Why I Built This:

I was tired of manually copying entity IDs when asking for help with automations. Now I can:

  1. Filter to just the relevant entities
  2. Export them as structured JSON
  3. Share with ChatGPT/Claude/etc.
  4. Ask for help creating an automation or script

The AI gets proper context about my entities, their states, and attributes - making their suggestions much more accurate and useful.

Development Approach:

I used a collaborative approach with Claude to help develop this card. The AI helped with structuring the filtering algorithm and working with Home Assistant's internal APIs. If you're interested in the process, I've documented it in the VIBE_CODING.md file.

Installation:

  1. Add my repo as a custom repository in HACS:
  2. Install "Entity Exporter Card"
  3. Add to your dashboard with: type: entity-exporter-card

I hope this tool can be useful for others who use AI to help with their Home Assistant configurations. Let me know if you have any questions or feature requests!

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

The original was posted on /r/homeassistant by /u/luchoelzurdo on 2025-05-14 17:49:48+00:00.

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

The original was posted on /r/homeassistant by /u/Tatts4Life on 2025-05-14 02:47:06+00:00.


After months or years of watching videos and reading posts I’ve finally decided to give HA a try. I’m going with a Beelink mini S12 N100 with 1TB of storage. I was able to get it from Amazon for $20 more than the 500GB version they were selling. I’m excited to try some ideas that will hopefully fix some issues we’ve had around the house

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

The original was posted on /r/homeassistant by /u/c0delama on 2025-05-14 09:22:45+00:00.

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

The original was posted on /r/homeassistant by /u/YankeeLimaVictor on 2025-05-14 04:49:33+00:00.

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

The original was posted on /r/homeassistant by /u/ddabhane on 2025-05-14 04:20:10+00:00.

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

The original was posted on /r/homeassistant by /u/Darkchamber292 on 2025-05-13 20:20:50+00:00.


Here is my blog post on Actionable Notifications!

https://automateit.lol/actionable-notifications-in-home-assistant/

Here is the breakdown:

  • Create automation trigger to track whatever you need tracked.
  • Set your conditions to prevent false triggers
  • Create your Action to send notification to your phone/tablets etc
  • Create buttons in your notifications and tie them to an automation, script etc.

Introduction:

Hello I just posted my third post on my new blog site. I am really passionate about Home Assistant and wanted to start something I could throw my thoughts and Ideas at on a regular basis. I would humbled and grateful for anyone that checks out my blog!

I plan on posting something new everyday for the next week or 2 and then I will slow down to 2-3 times a week.

I don't plan to focus solely on Home Assistant. I plan to focus on Self-hosted content as well but for now I hope you enjoy the HA content!

Some content ideas I plan on posting this week/next week

  • Location-Aware Automations
  • Blueprints - How they work and How to use them
  • Scenes - In Depth Guide and Templates.

I am brand new at blogging so please go easy and any advice, suggestions, etc are welcome!

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

The original was posted on /r/homeassistant by /u/reddit_give_me_virus on 2025-05-13 18:10:56+00:00.

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

The original was posted on /r/homeassistant by /u/c0delama on 2025-05-13 13:51:06+00:00.

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

The original was posted on /r/homeassistant by /u/nutteloost on 2025-05-13 18:41:23+00:00.


Hi everyone ✌️

I’m excited to share Simple Swipe Card, a new custom card I developed. This card lets you add multiple cards in a container and swipe between them - perfect for saving dashboard space!

Why I Made This Card 🧐

I previously used swipe card, but kept running into the infamous “t.setconfig is not a function” error. It was frustrating enough that I decided to build my own swipe card from scratch.

My version doesn’t use the Swiper library and has fewer bells and whistles, but it’s reliable and does exactly what I need it to.

Features ⭐️

  • Swipe between multiple cards
  • Pagination dots for visual reference
  • Configurable card spacing
  • Full visual editor support
  • Mobile-friendly touch and mouse navigation

Example

Configuration Example 🗒️

You can configure the card using the visual editor or with YAML:

type: custom:simple-swipe-card
cards:
  - type: weather-forecast
    entity: weather.home
  - type: entities
    entities:
      - sensor.temperature
      - sensor.humidity
show_pagination: true
card_spacing: 15

Visual Editor 🛠️

The card also includes a visual editor with a card picker for easy configuration from the dashboard without the need to edit any yaml

https://preview.redd.it/0n6wbzpjfl0f1.png?width=2008&format=png&auto=webp&s=ad95ef04e085fbe5487ebb0809abaeadc6ec9347

Installation & More Information ℹ️

All installation instructions, configuration details, and customization options are in the GitHub repository:

GitHub - nutteloost/simple-swipe-card: A swipeable container for multiple cards with touch and mouse gesture support 👈

Looking forward to seeing how you use this card in your dashboards! If you have any feedback or run into issues, please let me know.

view more: ‹ prev next ›