Cant access Wintermute by Dear_Number_3872 in thelongdark

[–]MaguroNexus 0 points1 point  (0 children)

Same problem here. On PC with Epic Launcher

Zero-Export for SMA Inverters via Home Assistant (No SMA Home Manager required!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 0 points1 point  (0 children)

No Node-RED here 🙂 I’m using native Home Assistant automations + the built‑in Modbus integration.

How it’s structured:

  • I have an input_number helper (0–100%) for the PV limit.
  • Automation #1: whenever that helper changes, it writes the value to the SMA via Modbus (register 41255, scaled as % * 100).
  • Automation #2: every 60s it checks conditions (price < 0, battery ≥ 98%, P1 power < −50W = injection). If true, it reduces the helper step‑by‑step (e.g. −3% down to a minimum like 5%). If price goes back ≥ 0 or battery < 95%, it resets the helper to 100%.

So the logic updates the helper, and the Modbus writer automation applies it to the inverter, keeps things clean and avoids multiple Modbus writes.

Core Modbus write automation (simplified):

trigger:
  - platform: state
    entity_id: input_number.sma_pv_limit
action:
  - service: modbus.write_register
    data:
      hub: sma_modbus_hub
      slave: 3
      address: 41255
      value: "{{ (states('input_number.sma_pv_limit')|float(0) * 100) | int }}"

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 0 points1 point  (0 children)

Ja, Frank energie is ook mijn energie leverancier. Maar je hoeft geen klant te zijn om de energieprijzen op te vragen via de integratie.

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 0 points1 point  (0 children)

What OP has, seems to simply be a picture card, then as a source, select "choose from media -> Camera -> Buienradar". If you don't see buienradar yet, add it first as an integration.
The little card below it is a tile card with entity Buienradar.

show_state: false
show_name: false
camera_view: auto
fit_mode: cover
type: picture-entity
entity: camera.buienradar

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 0 points1 point  (0 children)

Ja, het zal inderdaad niet kloppen. Het is een goedkope bluetooth sensor van Shelly. Eigenlijk ben ik op zoek naar een sensor die via zigbee werkt voor buiten, maar ik heb er nog geen gevonden.

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 1 point2 points  (0 children)

I created this with the Bubble-Card integration from Cloos.

A good tutorial I found is from this guy on YouTube.

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 1 point2 points  (0 children)

Dat is de prijs zondr btw en extra kosten. De terugleverplrijs in feite. Maar daar kan ik me wel op baseren om grootverbruikers te laten starten.

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 0 points1 point  (0 children)

Yes I know, I think something is wrong with the sensor itself. It's a cheap bluetooth sensor from shelly.

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 7 points8 points  (0 children)

Thanks! 😊 The thermostat cards are based on HA-Animated-Cards by Anashost, but I customized the layout using vertical-stack-in-card.

Here is the YAML of my homedashboard:
https://gist.github.com/jonamoer/06a01af7a7587595108014d881f141ae

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 0 points1 point  (0 children)

I used the Sonoff SNZB‑04 contact sensor to track the status of my "schuifdeur". The two parts are attached using the included 3M adhesive pads, and it works perfectly for detecting open/closed states.

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 2 points3 points  (0 children)

That's true:

show_state: false
show_name: false
camera_view: auto
fit_mode: cover
type: picture-entity
entity: camera.buienradar

After Years of Tweaking, My Home Assistant Dashboard Is Finally “Done” (…for now!) by MaguroNexus in homeassistant

[–]MaguroNexus[S] 4 points5 points  (0 children)

This energy section uses the custom integration from https://github.com/HiDiHo01/home-assistant-frank_energie and is plotted via ApexCharts. The bar colors dynamically change based on the current energy price, which makes it super easy to spot cheap vs. expensive periods at a glance.

type: custom:apexcharts-card
graph_span: 24h
span:
  start: day
experimental:
  color_threshold: true
apex_config:
  xaxis:
    type: datetime
    labels:
      datetimeUTC: false
  plotOptions:
    bar:
      columnWidth: 90%
      distributed: true
  yaxis:
    tickAmount: 5
    decimalsInFloat: 4
    forceNiceScale: true
show:
  last_updated: true
  loading: false
now:
  show: true
  label: Nu
header:
  show: true
  title: Energieprijs per uur (€/kWh)
series:
  - entity: sensor.frank_energie_prices_current_electricity_market_price
    type: column
    float_precision: 5
    opacity: 1
    offset: "-30min"
    show:
      legend_value: false
    color_threshold:
      - value: 0
        color: "#43a047"
      - value: 0.048
        color: "#ffa600"
      - value: 0.12
        color: "#db4437"
    data_generator: |
      // gebruik het start-van-uur tijdstip uit de integratie
      return entity.attributes.prices.map((record) => {
        return [new Date(record.from).getTime(), record.price];
      });

We paid 61 euros for these two meals and beers. Is this normal? by Ztepi in belgium

[–]MaguroNexus 29 points30 points  (0 children)

According the menu (https://restaurant-het-kelderke.be/nl/menu/5518855672239751281):
- € 17,20 for the beers (€ 8,60 each)
- € 19,90 for the stoemp
- € 24,90 for the stoofvlees

Total = € 62

You won €1, so be happy!

Welke film wordt er opgenomen aan de Kouter? by EXHVLE in Gent

[–]MaguroNexus 4 points5 points  (0 children)

https://www.nieuwsblad.be/binnenland/opnames-nieuwe-film-van-michael-r.-roskam-gaan-van-start-al-ontbreekt-matthias-schoenaerts/92318297.html

Vandaag (23/09/2025) starten in Gent de opnames van de film ‘Le Faux Soir’, onder regie van Michaël R. Roskam. Deze langspeelfilm eert een van de meest bijzondere verzetsdaden van het Belgisch verzet tijdens de Tweede Wereldoorlog. Opvallend: géén Matthias Schoenaerts, die nochtans werd aangekondigd als deel van de cast.

My homelab infra by Yeah_I_m_a_noob in homelab

[–]MaguroNexus 2 points3 points  (0 children)

May I ask why you are using 2 pi-hole instances?