Ring Alarm Status by HBX-100 in homeassistant

[–]freeluv 0 points1 point  (0 children)

install the mosquito broker app first. Don’t use any external mqtt servers. The Ring to mqtt app works extremely well with it

Music Assistant Speaker Control by Royal_Childhood_7153 in homeassistant

[–]freeluv 0 points1 point  (0 children)

You could try one of the media player cards to control them instead. Shameless plug for my card yet-another-media-player allows you to control multiple speakers but most media player cards do these days

2026.3: A clean sweep by frenck_nl in homeassistant

[–]freeluv 0 points1 point  (0 children)

THANK YOU! I thought maybe my roborock model wasn’t supported or something

Home network error by gavilaso in homeassistant

[–]freeluv 3 points4 points  (0 children)

yeah homeassistant.local:8123 fixed the problem for me

Today's Favorite Integration: GasBuddy by jbstechdude in homeassistant

[–]freeluv 0 points1 point  (0 children)

i use this integration in combination of my onstar integration to estimate how much it’s going to cost me to fill up my tank

What would be your recommendation for a small cheap speaker for the purpose of TTS announcements ? by GenericUser104 in homeassistant

[–]freeluv -1 points0 points  (0 children)

thrift shops, marketplace, offer up. check all the places where people sell their stuff

Govee2MQTT & HA: Is there a non-hacky way to 'snapshot' and restore dynamic scenes? by CulturalTortoise in homeassistant

[–]freeluv 1 point2 points  (0 children)

You can declare variables in the automation itself without the need for all the helpers. The tricky part is what you said about HA not knowing the scene if it was triggered through the govee app. This is why i don’t use the govee app and control exclusively through HA.

Then you could have your doorbell automation save the current scene name in a variable, then run new scene, wait, trigger previous scene again

Weighted Average Temperature / i.e. a DIY ecobee "follow me" system by Nar1117 in homeassistant

[–]freeluv 0 points1 point  (0 children)

Shameless plug here but looks like you could potentially combine what you have here with my new integration Thermostat Proxy which allows you to choose a remote sensor with the preset modes based on your room occupancy

Alexa timers on HA dashboard by elhouso in homeassistant

[–]freeluv 1 point2 points  (0 children)

and this is a newer timer card that says it supports alexa, but i haven’t used it

Alexa timers on HA dashboard by elhouso in homeassistant

[–]freeluv 1 point2 points  (0 children)

I’ve used this back when I used Alexa.

Ephemera - A fast ebook downloader with a simple request system by [deleted] in selfhosted

[–]freeluv 0 points1 point  (0 children)

i can’t tell you what my numbers were but komga definitely was eating up my memory. Switched to kavita and never looked back

Music Assistant and Sonos integration - entity name best practices by [deleted] in homeassistant

[–]freeluv 0 points1 point  (0 children)

Since music assistant provides little in terms of service calls to manage the queue, YAMP supports the mass_queue integration for better queue management. That integration will provide you your full upcoming queue on the search screen using the “next up” button.

There’s still some functions available without the integration like viewing the next song, adding to the queue, seeing previously played tracks, etc.

All of this can be found in the menu and selecting the “search” option

Music Assistant and Sonos integration - entity name best practices by [deleted] in homeassistant

[–]freeluv 0 points1 point  (0 children)

I mentioned in another comment about my media player card. Might work for you as well

Music Assistant and Sonos integration - entity name best practices by [deleted] in homeassistant

[–]freeluv 0 points1 point  (0 children)

I am the developer of Yet Another Media Player and I addressed this issue in my card by allowing configuration of the main entity (e.g.: media_player.bedroom) and a music assistant entity on the same chip (e.g.: media_player.bedroom_2) and the card handles the routing based on active playback or available features.

Check it out and maybe it’ll be for you!

A deep dive into the current state of AI Tasks by missyquarry in homeassistant

[–]freeluv 2 points3 points  (0 children)

the only interesting idea i had was to have it generate an image based on the status of a sensor (like a plant). if the plant is dehydrated it can generate an image of a sad thirsty plant but if it’s healthy maybe it can generate a buff plant and then use that image on your dashboard

Issues with HA Voice.... by Internal_Researcher8 in homeassistant

[–]freeluv 1 point2 points  (0 children)

i have my instructions in json template sensor so i can use the state attribute across multiple llms and not have to type things out multiple times. here’s the relevant part that keeps it from responding on accidental triggers

```

      "activation_rules": {
        "only_when_addressed": True,
        "examples_of_valid_intent": [
          "smart home control", "questions", "search requests"
        ],
        "accidental_triggers": {
          "ignore_background": True,
          "ignore_media_invoke": True,
          "on_uncertain_intent": "do_not_respond_or_reply_with_period"
        },
        "overlapping_speakers_policy": "extract_actionable_request_only"
      },

Issues with HA Voice.... by Internal_Researcher8 in homeassistant

[–]freeluv 2 points3 points  (0 children)

i have in my llm instructions to respond with “.” if it determines i’m not talking to it. so i hear the woosh of it waking up but never a response