homeassistant

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

__init__, in Building from scratch
  1. Network cables everywhere. Way easier to do that before drywalling if that’s something you want.
  2. Neutrals in your switch boxes will make smart switches easier later. Though I heard that might be a code requirement for new construction anyway?
  3. Also heard oversize switch boxes are a thing, which will also make smart switches easier later (assuming price difference is negligible).
walden, (edited ) in Building from scratch

It might be easier to have the electrician install normal switches at first. That will give you time to figure out which ones you want to be smart, which ones you want on dimmers, etc.

Sensors will all be outside the wall, although you should make sure the thermostat wire has enough for a C wire.

I don’t know about smart outlets – I don’t think they’re very common. Most smart outlets are designed to plug in to normal dumb outlets.

If there’s a good spot on the ceiling, I’d have them run some ethernet cable to a box. You can leave it covered, but it’ll be there in case you decide to mount a WiFi AP there.

jubilationtcornpone, in Building from scratch

I don’t get as much into automating for the sake of automating. Personally, I prefer technology that makes my life easier. Anything “smart” in our house has to be manually overrideable.

That said, one thing I’m working on automating is the HVAC. Eventually I’ll have the Central heat, central humidifier, and whole house fan controls all integrated with HA. My goal is to maximize both comfort and energy efficiency. Being able to maintain the comfort level by automatically switching between A/C or fresh air (via the whole house fan) would be pretty cool (figuratively and literally).

padook, in Building from scratch
@padook@feddit.nl avatar

I would spend the money on smart switches before smart outlets. I personally find that I want smart control over almost all of my lights/ fans but only some of my outlets.

Another reason for my avoidance of smart outlets is they are much more expensive than smart plugs and it’s rare that you want to control both plugs in an outlet anyways.

As far as wiring if you want window/ door sensors or motion sensors you might consider running power to those locations. Much better than changing button batteries constantly.

Use conduit to future proof any network cables you run…

That’s all that comes to mind at the moment

ipha, (edited ) in ZigBee RGB Lightbulb w/o 3rd party app

Hue bulbs works with home assistant without relying on the hue bridge or app. Just need a zigbee USB adapter.

Ikea also makes some decent bulbs for a fraction of the price.

guttermonk,
@guttermonk@lemmy.ml avatar

Thanks for the suggestions. Do the IKEA bulbs work with HA out of the box or do they need an IKEA app?

static128, (edited )

I’m using both IKEA and Hue bulbs without having used any of the original apps/hubs (though I do use the deCONZ/Phoscon hub addon, not the Home Assistant ZHA but if you’re device is listed as compatible the experience should be the same.

Edit: apparently you can re-pair without a remote, see below comment: One thing to note about the Hue bulbs (without a Hue hub) is that you need one of the remotes to reset bulbs after already being paired so they can be re-paired to a hub, where as the IKEA only need the power turned off and on a number of times to enter pairing mode.

jgkawell,
@jgkawell@lemmy.world avatar

I actually ran into this just the other day on some refurbished Hue bulbs. I was able to reset then without any remote or app using this method. Just make sure to do it 2-3 times in a row or until the bulbs start flashing.

static128,

Thanks for the heads up

ipha,

They just work.

Lifebandit666,

I use bulbs I’ve bought from IKEA and Lidl. Because they’re ZigBee they’re local. The "Hub’ is HA because I have a ZigaZiga electrolama.com/projects/zig-a-zig-ah/ usb stick.

I use ZigBee2MQTT in HA to route commands to my bulbs (and sensors and plugs) which routes ZigBee commands through my MQTT broker which is also in HA.

The only app I use is the Home Assistant app

solidgrue, (edited ) in ZigBee RGB Lightbulb w/o 3rd party app
@solidgrue@lemmy.world avatar

I’ve been using the Sendled Sengled E11-N1EA bulbs available on Amazon for quite some time now. They have a bit of a cold white edge to them and could maybe be a bit brighter at times, but overall I’ve been happy with them.

Mine came in a 4-pack. I have two inside in table lamps, and two outside in coach lamps.

Omacitin,

I’ve had 10 of the RGB ones, E21-N1EA, for a few months now and they’ve been working perfectly. Not the brightest or the most accurate color, but they’re simple, cheap, and local-only.

ANIMATEK, (edited ) in Rewind video feed via Homekit integration?

I mean you can basically make everything you can image work through stateless switches. You would use homebridge to attach some script to the switch and start from there. That’s how I control some of my stuff too. AFAIK homebridge and HA can co-exist.

Knasen,

Hm, probably but sounds a bit over the top to be honest.

ANIMATEK,

Yes sorry I didn’t read your whole question very well. It may be possible to use the integrated remote app in the iPhone to control that. What device plays this video feed?

Knasen,

No worries, I have been guilty myself of doing just that. It comes from the Unifi cameras and the unifi nvr.

I think I might be on track with Scrypted ( github.com/…/Installation:-Home-Assistant-OS), I just need time to config it all and adjust resolutions I think

eutampieri, in Rewind video feed via Homekit integration?

You’d need HomeKit secure video

Knasen,

Thanks, I’ll look into it!

Knasen,

Works like a charm, thanks again!!

eutampieri,

How did you do it? Last time I checked it wasn’t supported

Knasen,

github.com/…/Installation:-Home-Assistant-OSInstalled it, got one feed working live streaming, that’s it. Left it because of life you know. Upgrade it to version 0.8 the other day and rebooted the HoAss server and voila, there it was. Recordings of the all the movements recorded by the camera.

eutampieri,

Nice!

CondorWonder, in How do you get the top bar?

It’s called Badges - edit the dashboard page, then click on the edit button beside the tab.

sabreW4K3,
@sabreW4K3@lemmy.tf avatar

Thank you!

ThrustyRL,

Do either of you know what entity is being used for weather? I use openweathermap for my weather entities, but none of them provide a nice image of the weather like in the picture above

CondorWonder,

Maybe a template sensor over the openweathermap_forecast_condition state? You can pretty easily have a template change its icon, and mdi: has all the icons built in.

Here’s a template I use for current condition in a card, but it should work similarly for the forecast. Or works just need to be applied to the icon of a template sensor.


<span style="color:#323232;">{{ iif(
</span><span style="color:#323232;">        is_state("weather.openweathermap", "partlycloudy"), "mdi:weather-partly-cloudy", 
</span><span style="color:#323232;">        iif(is_state("weather.openweathermap", "clear-night"), "mdi:weather-night",
</span><span style="color:#323232;">        iif(is_state("weather.openweathermap", "exceptional"), "mdi:exclamation-thick",
</span><span style="color:#323232;">        "mdi:weather-" + states("weather.openweathermap"
</span><span style="color:#323232;">        )))) }}
</span>
sabreW4K3,
@sabreW4K3@lemmy.tf avatar

If you go into your HA, open up the integrations panel and it should list all the entities

thegreekgeek, in Notification system
@thegreekgeek@midwest.social avatar

I’ve actually been trying to implement something like this myself, but I’m trying to do it natively in HA. What I’ve done so far is make an automation for each appliance that calls a script (with variables passed through for messages and whatnot) which notified each member of the household in parallel, based on whether they’re home or not.

My eventual plan is to make each appliance automation flip an input_boolean that sends an initial notification which can be dismissed (either by sensor, NFC tag or notification action). Then every so often or based on a trigger (like door opening, toothbrush doing off, etc.) it triggers the notification script again.

CondorWonder, in Seeking assistance with Auto Backup HACS integration

Create your own automation instead of using the blueprint. The blueprint doesn’t expose the location so it won’t work.

You might be able to look at the full yaml from the trace and copy it into a new automation (replace everything, then update the name). Once you’ve done that you should be able to use the visual editor and make whatever changes you need.

mike_wooskey,
@mike_wooskey@lemmy.d.thewooskeys.com avatar

Thanks for the suggestion! I’ll try it.

peter, in Low cost Zigbee GU10s via Ikea (UK)
@peter@feddit.uk avatar

Ikea makes some of the best smart home stuff IMO. Really well built, decently priced and no stupid lock in or cloud only stuff.

RandomLegend,
@RandomLegend@lemmy.dbzer0.com avatar

Every single bulb in my home is from IKEA and i was really happy with how easily they are to be integrated.

Sadly they aren’t repeaters for the regular zigbee network, only for other IKEA devices.

cynar,

They definitely are repeaters. I had issues with a Moe’s ZigBee dimmer. It turned out it was relaying off of an IKEA bulb. When that lamp got turned off at the switch, it killed the link. I ended up using a smart plug as a repeater.

Lifebandit666,

I second this statement. Most of my bulbs are IKEA. I have 4 floors and my ZigBee dongle is on the ground. If they weren’t repeaters, my Aqara motion sensors wouldn’t be working, but they do!

RandomLegend, (edited )
@RandomLegend@lemmy.dbzer0.com avatar

Interesting… are you using Zigbee2MQTT? Because i am on ZHA and looking at my network visualization none of my aqara devices connect to the IKEA bulbs. Only other IKEA bulbs connect to them in my case.

I have some temperature sensors from aqara, some movement sensors and some multi buttons and they didn’t connect to them. I had to buy some smart-plugs to act as repeaters.

cynar,

Z2M, and it was definitely routing via the bulb. The ZigBee dimmer unit couldn’t reach the coordinator directly (I might have mounted it in a metal wall box, with a metal front plate). It was connecting to the bulb and working fine however. When the bulb was off, the dimmer completely lost connectivity.

It might only be some of their bulbs, but they can definitely act as repeaters.

RandomLegend,
@RandomLegend@lemmy.dbzer0.com avatar

Interesting.

I remember having constant disconnects with my several aqara devices when i only had a path of bulbs to connect to. Those bulbs have constant power and are not turned off.

And when checking ZHA visualization i saw that they don’t connect to the bulbs but rather tried to connect directly to my stick but only got minimal connection because of the distance. No matter what i tried, they would not connect to the bulbs

barbarosa,
@barbarosa@lemmy.world avatar

Anyway to check this via the HA dashboard?

vividspecter,

Bulbs don’t usually work well as repeaters anyway. Their smart plugs tend to work well, although I wish they had power monitoring support.

RandomLegend,
@RandomLegend@lemmy.dbzer0.com avatar

The aqara plugs do have power monitoring but afaik it’s borked with ZHA unless you write your own quirks file…

Bluesheep, in Low cost Zigbee GU10s via Ikea (UK)

Better than that, if you are after more than one (and with GU10s, who isn’t?)

ikea.com/…/tradfri-remote-control-kit-smart-wirel…

This gives you 3 bulbs and a handy remote that also works with HA.

cosmic_slate, in Another successful Honeywell T6 install
@cosmic_slate@dmv.social avatar

This has been my favorite thermostat. I don’t have a C wire nor an easy to add one in, but it’s AA batteries last for several months and has been very reliable.

Yaztromo,

It’s what I use as well — my home was built with a Honeywell Lyric T5 (non-smart), so the wiring harness between the two is identical (including colour), so I just unplugged the T5 and plugged in the T6, did some setup, and it was done.

lightrush, (edited )
@lightrush@lemmy.ca avatar

Does it keep its settings while you swap the batteries?

orion2145, in Another successful Honeywell T6 install

The three layers of backplates hurts me.

lightrush,
@lightrush@lemmy.ca avatar

Gotta hide the drywall horror show the HVAC people left. 😅

orion2145,

Totally understand. I came back for mine, cleaned it all up, patched, painted and lost all back plating. But again, I totally feel your pain.

lightrush,
@lightrush@lemmy.ca avatar

Some day! :D

  • All
  • Subscribed
  • Moderated
  • Favorites
  • homeassistant@lemmy.world
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #