#the-workshop

1 messages · Page 2 of 1

thorny owl
exotic shuttle
indigo pine
#

Where I can ask about this? I need to solve this as fast as possible.

meager quail
winter pollen
meager quail
#

except for the last sentence, but sure.

winter pollen
#

you cannot use a light dimmer to control a fan

indigo pine
#

so I am looking controller with HA inegration to control fan speed

#

and stuck on this

meager quail
winter pollen
indigo pine
#

small steps 🙂

granite bluff
#

for anyone using homekit integration, are you setting up each bridge for device type or per room?

meager quail
#

neither

#

1 bridge per house to get things into homekit from homeassistant

#

1 bridge per device to get something that can only exist in homekit (like the fp2) into home assistant

sly ether
granite bluff
#

Yeah I was figuring out how I should organize my devices, wanted to see what everyone else is doing

meager quail
prime canyon
#

I've been looking at presence sensors, and the TI IWR6843 seems to be one of the better ones, and the Aqara FP2 uses exactly that one. Anyone know how hard it would be to flash the FP2 with a custom firmware?
(I'm interested in using the FP2 because the official dev boards for the IWR6843 are crazy expensive - 30€ for a single chip is fine but the cheapest dev board would be 166€, so ~70€ for a FP2 would be a bargain)

I've looked at the PCB, and there's an ESP32 controlling the whole thing, and a bunch of test pads, so I would guess that if it's not flashable over USB, at worst I might have to solder to the test pads, but if anyone knows anything, I'd be happy to hear

teal anchor
#

So try something and let us know how it does.

#

If you want more info on that, I would search the forum. Lots of people wanting people to tell them what to buy. In the end we all end up with a box of shame of shit that never worked right. It's a rite of passage into a real smart home.

#

Put this in a search engine of your choice:

site:community.home-assistant.io presence sensors

#

Also look at Apollo, they have some mmwave stuff new.

#

@prime canyon

prime canyon
# teal anchor So try something and let us know how it does.

that's the plan. I'm interested in one of the higher fidelity sensors with full 3D tracking capabilities. Most of the results related to home assistant are just a few detection zones to 2D-ish. The Apollo uses an LD2410B, which just has 9 distance gates.
Two of the raw sensors I found are the TI IWR6843 in the FP2 and the Infineon BGT60TR13C in the FP1. Neither return any results for home assistant that I could find.
So I'm not really looking for a finished product, more a development platform, with the high likelihood that it may just gather dust acknowledged :D

eager granite
#

I want to turn on the heat in the morning 40 minutes before next alarm on my pnone (as I work shifts and don't get up at a regular time). Lots to find on this and other forums, but the template seems to cause errors when there's no next alarm, anybody a link to the right code or right tutorial on how to achieve this?

olive owl
indigo hare
#

not sure where to post this, but here goes -
in my job, i'm assigned tasks within projects, and each task has a bucket of hours i have to log time to every day. so, Project A has Task 1 (with 5 hours remaining) and Task 2 (with 10 hours remaining), Project B has Task 1 (with 0 hours remaining) and Task 2 (with 8 hours remaining). projects stick around for a bit but eventually go away, tasks exist for the current month and then are replaced by new tasks.

i want to be able to display my projects with their associated tasks and how many hours i have left on each task. i can pull all of this from the timesheet platform's rest api, but it requires hitting multiple endpoints and then doing some math to subtract the number of logged hours from the number of total available hours (per task).

my questions are:

  1. what is the best way to store this data in HA? i was thinking individual sensors per task, and prepending the name of each with the project identifier for easier grouping, but this would likely end up being messy over time as the tasks change every month. maybe one sensor per project, with attributes named for each task with a value of the remaining time? something else?
  2. what's the best way to even accomplish this? i already have a powershell script that i can use to pull the data from the timesheet platform, so i could theoretically just have that script set the values in HA. i looked at the Rest API integration but it doesn't seem to be well-suited for the task at hand, since i have to call multiple endpoints to get the information needed for each task. it would probably be best as a dedicated integration, but i'm not there yet with Python and this is probably a very specific use case that i'm not sure would be of value to the population at large...
dim solar
#

Hmmmm - anyone have any pointers on what to search for when trying to change the backlight mode on some devices via Z2M?

It comes up as per the image, and I want to toggle between 'off' and 'inverted' depending on the time of day

#

In dev tools, it shows as:

hallow lance
dim solar
#

is that the same as input_select.select_option?

#

I'm trying to figure out what action to hit from NodeRed

#

Oh! Silly me, look further in the list 😄

hallow lance
#

Almost. input_select.select_option is for the UI helper ones, select.select_option for the select entities of integrations.

dim solar
#

then the payload would be something like: { "option": "{payload}" } ?

#

where msg.payload is off or inverted

hallow lance
#

I don't use NodeRed. In HA automations it looks like this:

action: select.select_option
target:
  entity_id: select.entityname
data:
  option: whatever
dim solar
#

ah - perfect 🙂

#

thankyou sir.

#

now I can easily set the light switch backlights (ie the ring around the touch switch) to OFF at late at night, so it doesn't light up the room 😄

#

maybe once I get used to it, I'll just get it to turn off the bedroom ones - so even in a dark house, you can find the damn things hahahah

hallow lance
#

Or migrate to HA automations SWPalp

dim solar
#

I have waaaaay too many already in NodeRed to start splitting them 😄

dim solar
#

although, if there's a better way in the automations to do this - every hour - I'm interested:

// Consumption rates
var peak = 0.2849;
var offpeak = 0.1958;
var peak_start = 15;
var peak_end = 21;

// Peak is 3pm-9pm.
if ( msg.payload >= peak_start && msg.payload < peak_end ) {
    msg.electricity_price = peak;
} else {
    msg.electricity_price = offpeak;
}

return msg;
#

then it sets a new entity configured by NodeRed that contains the electricity price

hallow lance
#

Looks like a template sensor to me.

#

If between peak_start and peak_end hours the value is peak, else offpeak - right?

dim solar
#

pretty much

#

then that feeds into the Energy stuff for pricing / consumption

hallow lance
#
{% set peak = 0.2849 %}
{% set offpeak = 0.1958 %}
{% set peak_start = 15 %}
{% set peak_end = 21 %}
{{ iif( peak_start <= now().hour < peak_end , peak, offpeak) }}
#

Or shorter:

{{ iif( 15 <= now().hour < 21 , 0.2849, 0.1958) }}
dim solar
#

where would I add this?

hallow lance
#

That could be pasted in a template sensor UI helper.

#

It could also be enhanced by using input_number helpers, so that the variables could be set from the UI.

dim solar
#

that might help - as I'm currently using an hourly cron - but it never triggers on start, so the value is normally null on a HA restart / reload

#

hmmmmm - I cna't figure out how to make it AUD/kWh like the energy class wants.

#

oh - it wouldn't let me set "Unit of measurement" to AUD/kWh first time - now it does.

hallow lance
#

But does it show a value in the preview? I doubt it eith the device class energy set.
That isn't used for prices.

#

With no device class set and state class measurement it should work.

dim solar
#

Yeah - after going back and editing it, it let me set it like this:

#

the first time, it said it didn't know what AUD/kWh was.

#

maybe I set something in device / state before without realising.

hallow lance
#

I would set the state class to measurement. That would show a graph in the entity details.

dim solar
#

yeah - it does anyway - but I set it ... just because 😛

#

while I'm looking at annoying / shit NodeRed stuff, how is HA at handling SSL certs these days?

#

right now, I'm just doing:

#

which is dumb, and I hate it - but it works hahahah

#

it basically reads the ssl cert, runs the Addon for lets encrypt, and then reads the cert again - if they're different, restart nginx

#

there doesn't seem to be any hooks in the LE Addon, nor is there any smarts in the nginx bits, and last time I looked, HA didn't do auto-cert stuff

hallow lance
#

The cron and start/restart stuff is simple.
I guess the Folder watcher integration could detect those file modifications.

dim solar
#

I mean, Ideally, it'd be good to use something like Caddy - or even have HA understand SSL itself and do the whole ACME thing

#

that's always been a sore spot for me

hallow lance
#

The question is: is it worth detecting a change and not just restart NGINX when LE has stopped anyway.

dim solar
#

but if HA uses SSL directly, it requires a full restart for an SSL cert change?

#

Ya know - originally, I had a reason - cos it interrupted something....... but you think I can remember what that was now? 😛

hallow lance
#

I would use a reverse proxy. That way you don't have problems with local access.

sly ether
#

Documenting your own things seems crazy, but it's worth it

#

Personally I do reverse proxy via Caddy and it works really well

dim solar
#

yeah - I'd love to see a Caddy addon in the official store

#

but I don't really want to roll my own when I'm using the HAOS install method

sly ether
#

There is one, not everything can be official—or they'd have too much work to do

dim solar
#

true, but at the same time - doing SSL properly is really important

sly ether
#

Caddy being a 3rd party add-on doesn't make it less good at its job 😉

dim solar
#

true, but it means your relying on $randomperson to keep it up to date

sly ether
#

Not really, that's not quite how it works. Add-ons are just docker containers with a little magic—and so when the docker image gets updated it's easy to have a GitHub workflow kick off a release which is what einschmidt has done

dim solar
#

I know its more setup, but my hacks for nginx + LE are at least official addons, so there should always be someone to keep them up to date

sly ether
#

Except for the fact that you're using hacks to stick it together. You can always run Caddy on another machine and update the docker container yourself whenever there's a new release 😉

dim solar
#

yeah - but the hacks mean I haven't had to touch it for 2-3 years

#

lets be honest, I'm never going to keep it updated by hand 😉

#

and yeah - I could put it on a different machine and just RP it from there, but dammit, I have a public /24 and I wanna use more IPs hahahah

sly ether
#

But you are doing something non-standard and you have to have all these hacks running to get it work by rebooting. Personally I'd farm it out to a 3rd party add-on whose maintainer has proven himself trustworthy

dim solar
#

yeah, I get that - I did packaging for 20+ years, but at the end of the day, $random will always disappear or go 'eh, I cbf anymore'

#

or given my age, a lot of the folks are just straight up dying now lol

sly ether
#

There's no guarantee that an official add-on won't be discontinued either

dim solar
#

true, but people would scream murder if nginx & le got retired without an official replacement hahahah

#

yeah - I already have that enabled

#

I guess I just kinda figure that something like a turnkey https wrapper should be front and centre, with high priority for what is mostly a web app

tepid vector
#

turnkey https wrapper
Doesn't Nabu Casa do exactly this for the folk that can't/won't do it themselves? And the rest of us... we like to tinker, so we spin up our own reverse proxies.

raven sage
# dim solar right now, I'm just doing:

I'm doing something pretty similar in a HA automation, can't really think of anything better. (I have mine check if it's within... 30 days of the cert expiring and only run LE/restart nginx if that's the case)

#

triggered that to run at an off-hours time so it doesn't interrupt connections when i'm doing stuff :/

#

i'm using the nginx add-on on haos, pity there doesn't seem to be any way to make it do a reload to update the cert rather than a whole restart.

tepid vector
#

That's one of the advantages that containers have over HAOS smart2

idle mountain
#

has anyone seen an esp relay board but using solid state relays?

idle mountain
#

exactly what i was looking for! thanks

blazing hare
#

there's a whole bunch of them around - think i saw a 16 channel one at one point

idle mountain
#

is there anything to look out for with them?

#

or do they just work with similar properties to the ordinary relay designs

blazing hare
#

they're pretty much like a normal relay just better

idle mountain
#

nice

blazing hare
#

can do pwm without melting them

tardy cedar
#

has anyone tried out the webRTC integration with Arlo cameras?

storm oasis
#

i am thinking of adding a FP2 motion sensor there, do you guys think it would work?
is it wide enough to see all around those places?

meager quail
#

It will work better on the tv console (you’d probably cover the whole room)

#

Though you may need one in either end of the room to get solid accuracy at the fringes

winter pollen
#

think they max out around 30ish feet

meager quail
#

The room looks long. I would put one at waist level on either end of the room, the sensors get less accurate the further you’re trying to detect occupancy. Using 2 sensors would help that (1 for each half of the room rather than 1 for the whole room)

#

You can look at the Apollo mtr2 also. Works similarly for half the price. Requires more tinkering though.

storm oasis
#

which would be 530 cm from the wood axis on top

#

and its 260 cm high

meager quail
#

I would not put it up there.

storm oasis
#

mh i see, its the only flat high surface close to the middle thats why

meager quail
#

It will be too high.

#

Aim for waist height

storm oasis
#

oh too high, really

#

what about on the side walls?

#

i know it has only 120 fov, but maybe its enough?

meager quail
#

You can try it. I have mine in the corner of a room.

#

That 120 degrees would work way better positioned on the narrow wall

meager quail
#

On the tv wall or the one opposite that.

storm oasis
meager quail
#

Yes

storm oasis
#

but if i put it there, it wouldnt cover the other living rooom place

#

its way too far no?

meager quail
#

Correct

storm oasis
#

ye thats why you said to put 2

meager quail
#

Which is why I said two at the beginning

#

Yes

storm oasis
#

so i was trying to find a way to use just 1

#

cuz honestly i dont really need the part between the tv and the sofa

#

i just need to know if someone is on the sofa

#

which is like 3m away from the tv

meager quail
#

So put it on the tv table. Done

storm oasis
#

wait what

#

i think you understood wrong what i said, or i might have exaplined my self wrong, one sec

#

this is basically where i need to see it

meager quail
#

Dude so put the sensor at the top of your red I.

storm oasis
#

so on the wood axis?

meager quail
#

Anywhere along the wall by what I assume is your kitchen

storm oasis
#

no sorry, you are confusing me, i dont understand where and what red I would be

meager quail
#

lol

#

Your room is long and thin. Put the sensor on the narrow wall closest to whatever half of the room you want to monitor.

Don’t put it on the ceiling.
Don’t put it on one of the wide walls.

storm oasis
#

is this the wall u talking about?

meager quail
#

No

#

That’s a fireplace

storm oasis
#

indeed

#

this?

meager quail
#

No

storm oasis
#

KEKWlaugh ahaha idk any other thin wall, tbh all american houses have thin walls

meager quail
#

Your room is a giant rectangle

storm oasis
meager quail
#

A rectangle has 2 long walls

#

And two narrow

#

Which narrow wall is closest to your couch?

storm oasis
#

so the tv one?

meager quail
#

Omfg

storm oasis
#

the one close to the kitchen

#

?

#

the opposite one of the tv?

storm oasis
#

here so, but will it get all the way to the sofa?

meager quail
#

It should.

storm oasis
#

thats like 8m from the wall all the way to the sofa

meager quail
#

You are making this so much harder than it needs to be.

#

Try it there. If it doesn’t work. Move it to the other end of the room and try it there.

storm oasis
#

i mean sorry i guess?

storm oasis
meager quail
#

That’s when you return it

#

It should work in one of those two spots

storm oasis
#

gonna be interesting on how i will plug it to the power

winter pollen
#

does anyone regularly reboot their esp mmwave sensors?

meager quail
storm oasis
#

so i was wondering if theres a motion sensor FP2 type thing that also does as a camera

meager quail
#

<@&330946878646517761> j_biniance spam

raven sage
#

probably better off looking for two different devices that each do their job well rather than one combined device that's unlikely to be as good.

swift ginkgo
#

I want som RGB in Ceiling Lights that have control over intensity and able to be controlled via HA. I would like it be decently bright and its to light up a bedroom

trail fractal
wooden anvil
#

Hi guys, I want to monitor some data incomming on my raspberry Pi 5s serial port but I can't get it to work, I know for a fact, that there is data incomming but neither cat nor minicom does recieve anything what am I doing wrong?

teal anchor
jovial lion
#

I need to come up with a ventillation solution for my network rack closet, the unraid server in there is making things a bit too warm for my liking. I was thinking about grabbing two of these https://www.amazon.com/AC-Infinity-Temperature-Controller-Workshops/dp/B0BFK144X5 and wiring up separate electrical outlets, one up high for the exhaust and one down low for intake. Is this a horrible approach to use one central temp sensor to control two zigbee plugs to get both of the fans turning on/off in unison? Anyone approached a similar project in a different way maybe that I'm not thinking of?

#

wish i could take advantage of the fans ability to be hard wired, but i think that would complicate automating anything and would rely on the onboard sensors which wouldn't talk to each other (high vs low)

jade jacinth
#

I'm looking to buy speakers (likely wireless) for my open concept kitchen / living room / dining area and was wondering if there are any preferred brands?

#

is bluetooth sufficient for quadrophonic+ audio or should I be looking for wifi based stuff

sly ether
#

Bluetooth is less than ideal. It compresses audio a lot.

woven dock
meager quail
blazing hare
dire pecan
sly ether
dire pecan
#

Someone posted this as a shitpost in another server and I was like WAIT IS THAT REAL

indigo pine
bronze shore
#

Hi! I'm new to HA. Which solar battery is compatible? is there a list?

tight mango
#

#1284966353798697001 can better answer that, with the recommendation tag - do tell people the country you're in, budget, etc

near peak
#

Can anyone recommend a (cheap) module / setup for turning on/off an LED strip based on human presence?
My needs are simple, i just want the light to turn on if a person enters the kitchen area of my flat, and turn it off if the person leaves. Can be simplified tho (e.g. only sense motions and turn it off if no motion for x seconds, etc)

fringe hemlock
#

I was just thinking about implementing one... is there a way to switch on 230V but without that clacking sound of the relay? I know there are solid state relays but why is none of the zigbee smart plugs using these? sometimes it's nice to hear it but for switching on an amp with speakers I think it'd be smoother without that sound

near peak
#

I know many people love YAML for its simplicity, however for me personally it's way more confusing than e.g. writing a logic in Python lol

fringe hemlock
fringe hemlock
near peak
#

something like this

jovial lion
# blazing hare Why not just a single fan and a vent?

Yeah I think maybe the space under the door down to the wood floors is about 3/4” so that probably is enough of a space to let fresh air in. One exhaust fan up high might be enough and would really simplify things (let the fan trigger itself with what it already has onboard).

jade jacinth
#

hmmm anyone have experience with Ikea's SYMFONISK wifi bookshelf speakers?

sly ether
eternal surgeBOT
#

Don't ask to ask, just ask your question. Then people can answer when they're around.

When you do ask a question, try to provide as much background detail as possible. Ask yourself these questions first so that others don't have to:

  1. What version of the Home Assistant are you running? (remember, last isn't a version)
  2. What exactly are you trying to do that won't work?
  3. Is the problem uniform or erratic?
  4. What's the exact error message?
  5. When did it arise?
  6. What exactly don't you "get"?
  7. Can you share sample code, ideally with line errors where the error occurs?
jade jacinth
#

ok I'm thinking of grabbing some symfonsik bookshelf speakers then modding them to output to better quality speakers

#

or maybe if I'm going that route I should get some sort of DIY PCBs instead

raven sage
#

the symfonisk speakers are sonos, and i'd bet that the software has some specific dsp tuning for the built-in speaker drivers. no idea if a mod like that would provide good results or not.

#

kinda unfortunate how the sonos "Port" and "Amp" devices, their official "bring your own speakers" devices, are so expensive :/

#

might be better off looking at a different ecosystem or a completely diy solution depending on what your goals are.

#

for example you might consider using an esp32 or raspberry pi based solution running squeezelite.

tepid vector
#

There are plenty of posts on Reddit and various hacking sites about projects people have done with modding Symfonisk. They all seem positive about the outcome. They're a solid solution if you're already in the Sonos ecosystem.

sturdy lynx
jade jacinth
#

oh I'm in no ecosystem right now, I mean I guess I have some Gen 2 Amazon Echos that have 3.5mm audio jacks but that's a whole can of worms I don't know how to deal with for general audio output (unsure if they use Wifi for music)

#

maybe Arylic Hmmm

#

hmm seems like they are just resellers of Rakoit

dusty stream
#

Why no smart home company offers HA? I'm located in Texas

hallow lance
winged summit
#

I am looking to invest in some smart tech for my apartment, and I have most apple devices and a homepod. Question is should I look for matter based devices or should I specifically target zigbee devices.

I would like to use HA to control everything and not too keen on using the Home app on apple devices.

At the moment I have two eve smart thermostat that uses matter.

sinful mulch
#

I'd say if you have matter devices already, go with matter

#

if you spot zigbee or zwave devices you want, having multiple networks is fine, too

sturdy lynx
winged summit
#

Thanks. I will do some research for zwave based devices. But maybe it’s still better to just get started with what I have and then when my buying new devices stick to zigbee / zwave

mild grove
pallid cargo
#

is anyone aware of any sort of bathroom exhaust fan that can mount easily over a bathroom window and also be smart (or attach to a standard smart AC wall plug)?

crystal pond
#

can someone explain the HA database to me? I am using recorder but I still have a huge file home-assistant_v2.db.bak. That date isn't that old but it could be from when I copied it from an old server I don't remember when

hallow lance
#

That might be a bigger explaination from an expert. The #1284966617670881350 with the "Analytics" tag might be able to help better.

simple lava
#

Desperate cry for help

sick chasm
#

We have been trying to create a bettery supplied energy sensor technology to detect cigarette smoke, we want to be able for the sensor to last for months before having to recharge the battery, most of the smoke sensors in the market such as PM 2.5 have high energy consumption hence cannot be used to detect in small intervals smoking incidents. Even if we try to sleep the sensor for long period of times its capabilities decrease and it is no longer accurate. Anyone has a suggestion of alternative technologies that we can implement either on possible smoke sensors or other sensors that could possibly combined with software logic be reliable in detecting such incidents? Note: that we are trying to build this technology from scratch.

tight mango
charred talon
#

Is anyone good with electrical stuff? I want to try using a standard E26 to E12 candelabra converter in my old ceiling fan fixture that has a t12 bulb. The glass base is only 5cm so standard bulbs won't fit

lime crescent
#

I have all the home assistant back end stuff setup already

#

I wanted to make something more sleek and modern looking as well

steep eagle
#

Man, the HACS default repo is lagging behind on pull requests. The new integrations being merged these days were posted in February. 😵‍💫

silver pilot
#

The instructions to add a custom integration, in this case Genie\Aladin garage door control, starts with 1. Go to HACS -> Integrations.
2. Click the three dots on the top right and select "Custom Repositories".

On my installation, when I click on the three dots, the only menu option is Application Credentials. Am I looking in the wrong place?

hallow lance
#

You are not in HACS (in the newer versions there is no integrations page anymore), but on the HA integrations page.

silver pilot
#

Got it. Thanks for the clarification. I was assuming that HACS was an insider shorthand for the Home Assitant settings. I see now that it is a separate addon.

crystal pond
#

hey guys if you have a group of covers how would you activate the group within automations (with yaml)

#

action: - service: homeassistant.off target: entity_id: group.owners_curtains

olive owl
crystal pond
#

I mean no one reads that stuff

#

they just ignore it

olive owl
#

that's demonstrably untrue

#

it'll certainly get ignored here

crystal pond
#

well it got your response 😉

hallow lance
olive owl
#

only to block you

sly ether
#

Hint: yellow means mod

crystal pond
#

i will continue to that the method of organizing issues and questions makes sense on the forums and or github. In discord it has completely gone off on a tangent

sly ether
#

Regardless of if you like it or not, posting in the right place is the way to get help. You can walk into a library and ask for cremation services, but that's not the right way to solve a problem.

crystal pond
#

service: cover.close_cover

#

incase some other person searches in discord for cremation services

#

can someone let RobC know I am sorry for my actions and apologize I didn't want him to block me

raven sage
#

Always a good day when i build a new firmware for my espressif thread border router and my thread network still works afterwards… would be nice if it worked first try tho rather than my having to fiddle around with esp-idf versions and menuconfig settings and re-flash a few times :)

#

Apparently i should have TREL now.

#

... which i guess means i need a second thread border router so i can test that out :)

teal anchor
#
vast leaf
#

Hi guys, this is my central heating unit. Seems like it doesn't have an EMS bus or alike. Wwyd to make this smart? I only have floor heating

past flicker
vast leaf
#

I do

#

I think this is the correct one

past flicker
# vast leaf I do

Right on. So, if you’re looking to control room temperatures, get a “smart” thermostat. I use a Z-Wave one.

vast leaf
#

Do you know a SBC or controller with ethernet to connect to the wires behind this screen that should function as a smart thermostat?

vapid egret
#

I use an external thermometer and automation because I don’t have a boiler. I can only open and close the radiators.

Though, boilers can also be controlled with a relay and managed via automation, using an external thermometer. That way, every little detail can be customized exactly how you want.

blazing hare
#

The control you can achieve will depend on the exact model - e.g. If they have opentherm you probably want to use something like this: https://github.com/diyless/esp32-WiFi-thermostat, otherwise a small relay would do the job.
Personally I use a hive thermostat and base station as it still works without home assistant so a bit more friendly when I move out

past sequoia
#

Question about thermostats. I have an ecobee thermostat, and although I like it, I see that they have stopped issuing API keys, and so I can't pull that into Home Assistant easily. I'm considering changing thermostats for this reason. Does anyone care to share what brand thermostats they are using which play well with Home Assistant?

olive owl
past sequoia
#

Well, I saw that HA found it via HomeKit, but it wants a HomeKit pairing code. Docs say for me to "find" this code, on my device or packaging, etc. No idea where to find it. Maybe if I remove the device from the wall? Packaging is not a thing, because it is 2 years old.

olive owl
#

It's on the screen of the thermostat

past sequoia
#

Ok, I'll check when I get home tonight. Thanks.

#

Meanwhile, I also attempted to add it via SmartThings, which I have a hub for. Maybe that's going to get me what I need, because HA sees it via that integration also.

olive owl
#

it's always better to go direct if you can, plus HA continues to improve the actions available with Ecobee when connected via Homekit

tepid vector
meager quail
olive owl
#

does it not support HomeKit at all?

#

I didn't know that

past sequoia
#

Thanks, Ender and RobC. I was able to pull it in through SmartThings; it is working as I need it to.

olive owl
#

I have two Ecobee3 from many years ago

meager quail
# olive owl does it not support HomeKit at all?

It can generate the QR code fine, and it will add to HomeKit. However, the connection resets in <1 hour and you have to go through the setup again from scratch. Ecobee is aware of it but have said they have no plans to fix it.

olive owl
#

weird. seems like HomeKit was a big part of their strategy

#

they were early adopters

meager quail
#

Yeah it’s apparently not an issue for any other model they sell. 🤷🏻‍♂️

vast leaf
#

Hi guys, Are there any good opentherm Ethernet gateways

flint prawn
#

i got a wifi one

sly ether
raven sage
#

Huh, I'm kinda tempted to pick up an SLZB-06 to see if i can get espressif's port of OTBR running on the esp32 chip they use for the web ui/ser2net. Would be kind of neat if that can be done, since it would give you a nicely packaged standalone thread border router.

brisk goblet
#

What esp32 chip are they using. Would need an H2 or C6 for thread support.

raven sage
#

it contains a separate radio for zigbee/thread, either a CC2652P or EFR32MG21, both of which have thread rcp firmware available.

brisk goblet
#

I know that, I thought you meant running thread alongside zigbee lol. It should be possible

raven sage
brisk goblet
#

It should work. I did a test a few years back of an early version the espressif border router with a cc2652p2 flashed with RCP fw

#

I have a cc2652 flashed with RCP fw now running with serial over tcp to OTBR. But the fw doesn’t seem to be great as it locks up regularl, requiring a hard reset.

#

The efr32 variant may be better choice for thread

#

Or check out my stuff 😂

raven sage
#

there's apparently some timing trickiness with thread rcp protocol that make it a bit less reliable when run over a network, it's possible that running otbr on a directly connected device might be better than over the network?

brisk goblet
#

I’d think so. one reason I’ve held off selling anything as a border router is I didn’t think it was worth it to run over tcp serial, when the esp32 could be the br

#

it’s definitely on my todo list so let me know how it goes

raven sage
#

fwiw, I am currently using the espressif devkit as a border router with HA, and it's been working well, albeit with a reliatively small network.

brisk goblet
#

The RCP model for thread radios is nice as it is a standard so any border router should hopefully work with any RCP radio

jagged harness
#

Say I want to make an entity that gets its value from a python script I write, where would I start?
Like an example would be showing my bank balance. I couldn't do that with just a HTTP request in HA. But I could make a selenium script that grabs that.

I have a home server setup, which is just a headless linux PC running a bunch of docker images. So I'd want to set up the python scripts to run in a docker image on the same device running the HA docker image. Not sure if that changes anything.

#

There isn't a specific thing I have in mind for this. But knowing how to do this may be useful in the future

#

I think my main problem is I don't know the proper terms to describe this, which makes it harder to research on my own.

blazing hare
#

You can have your python script send your HA a rest command and use an automation/triggered template sensor to set the value

vast leaf
#

Hi guys, Is there someone in this server whit OpenTherm experience who lives in Zuid-Holland (NL)? Please PB me

vast leaf
#

You could've just asked what it was that I'm trying to do

plush gull
#

It's a good practice to just be more specific, because this could have ranged from a basic OpenTherm question to hey can you help installing x?

vast leaf
#

I've got a central heating unit. I want to add an OpenTherm ethernet adapter to it but I'm afraid I might damage some of the plastic parts as I open up the unit. Also, I don't have experience connecting this type of device to HA. I was wondering if there's someone near me with more experience who. Could help me out in person.

plush gull
#

Maybe the Dutch domotics discord server is more suitable for this

vast leaf
#

Tnx

sly ether
eternal surgeBOT
#

@boreal estuary Please do not cross post. Read the channel description, post it and wait for folks to respond. Crossposting wastes people's time as they're unaware of the help you're getting elsewhere.

boreal estuary
thorny owl
#

Anyone have any suggestions on how i can build a sensor off of an external device that exposes a websocket? Seems that home assistant will expose its own websocket but doesn't have native support for connecting to an external websocket. I'm deploying signal-cli as a chatbot and it can expose a websocket interface. Other solution I've seen is using node-red, but was trying to limit the number of services if possible.

tight mango
#

Build a custom integration? There's already one for Signal so that could probably give you a starting point.

thorny owl
#

OK good stuff. I'll dig into that. Thank you!

fringe hemlock
#

only have it running for ONE websocket I need to connect to

thorny owl
#

Yeah, didn't really want to spin it up for just that.

#

Will see if chatgpt can help me hack together a basic integration.

thorny owl
eternal surgeBOT
#

@thorny owl I converted your message into a file since it's above 15 lines :+1:

thorny owl
#

Ah, my bad. was continuing the context of the previous chat but understood. I apologize!

native valve
#

anyone ever experienced a bug where apex charts stops getting new values and simply draws the last-known value over and over, until the entire graph is a horizontal line?

hallow lance
#

Argh. Just a second too late. sadCat

native valve
#

?

olive owl
#

Discord spam

native valve
#

I already posted it there two days ago

#

I don't understand what "a second too late" means

plush gull
olive owl
#

It was discord spam that was deleted

#

All the mods raced to ban the dude and I won :). That is all

#

Crossposting is also against the rules

carmine moat
#

Someone here open to help me identify an inductor value?

#

The issue is the two gold bands. Any info I find online do not allow two gold bands there.

blazing hare
#

Yeah... That's weird as fuck

thorn ore
#

What makes you think it is an inductor and not a resistor? Could be 8.2 Ohm 5% but that extra black band is odd.

#

Green is not the exclusive colour of inductors. Many power resistors are flat green. Inductors tend to be gloss green.

boreal onyx
#

Did it come off a PCB? If so the silkscreen might help, if it was labelled Rxx or Lxx

blazing hare
#

It doesn't match 5 band inductors which should start with silver and double wide lines

boreal onyx
#

And from what I can see to have gold-gold-black on a resistor it would need six bands total

carmine moat
carmine moat
carmine moat
#

Thanks guys.

tulip steeple
#

if that second to left band is red it should be 8.2 ohms ± 5%

storm narwhal
tulip steeple
jagged harness
swift ginkgo
#

What zigbee stick should I buy

#

I’m looking for something cheap

olive owl
plucky halo
#

I need some way to get a notification when my doorbell rings. Only that, nothimg else. no remote opening, no picking up remotely

I dont wanna take apart the system too hard, and i dont wanna pay too much. i just want notifs to home assistant

thorn ore
#

What voltage does your doorbell use?

olive owl
hardy siren
#

I want to build a device that consists of a board (small arduino or raspberry pi pico) and an e-ink screen, which I put next to my door and that will show me the status of the two windows that I forget to close most often.
Now would you guys recommend using an arduino or a raspberry pi? The Arduino probably uses less energy (It will be battery powered). I will connect it via wifi and subscribe to a topic on my mqtt broker where the window status will be published.
With which board will that be easier/better? Also, would a screen that is "for raspberry pi pico" also be compatible with the arduino mkr wifi 1010? They seem to have a similar layout for size and pins.

blazing hare
#

You'll get about 4x the life out of the mkr 1010 as you would a pi, as that does have a wifi low power mode and can sleep/deepsleep unlike the pi

#

As for connecting the screen - they almost certain will work with the duino as they're just 3/4 pin SPI interfaces mostly, but if the pinout is different it won't just plug in nicely

hardy siren
#

thank you!

thorn ore
#

You could also use an ESP board and ESPHome,

hardy siren
#

Is there something like Tinkercad but.... better? Like, there's only the arduino uno r3 available, but what if I want to use a different one? What if I want to simulate my project. I'd need an e-ink display component and the specific arduino. Is there such a tool?

elder pivot
#

Tried that template. Now I gotta figure out how to make it work. 😛 Doesn't create any kind of entity. Never worked with templates.

keen bone
#

the suffering when making a proto board for something

#

one channel of the thing works.

#

the other 3 that are identically made

#

do not.

#

😐

blazing hare
#

Rip in peace

swift ginkgo
#

is anyone can assist me here that would be helpful

tepid vector
crystal pond
#

anyone here know about valve covers in HA? I am trying to use them to control some water valves and I am finding out my automations don't work because the service: valve.open and volve.close don't really exist?

olive owl
crystal pond
#

right the syntax is a little different it has action instead of service:
actions:
- action: valve.close
target:
entity_id: valve.demo

#

its not service: valve.close

#

I am learning that the hard way

olive owl
#

That makes no difference. They both work

jagged harness
#

Home server and cloudflared-related thing:
I have a domain (separate from the one I normally use for home server stuff) that hosts a site. But I'm wanting to use a specific subdomain for a service running on a docker image.
Anyone have advice on how to set that up on the cloudflare side?

Like I imagine there are 2 approaches:

  • Handle the domain in cloudflare and forward non home server stuff to the server hosting the site
  • handle the domain in my name registrar and forward home server subdomains to cloudflare
    If it matters, I get hosting from the same site I bought the domain from (namecheap)
#

I think this is mainly a "don't know how to phrase my problem in a google-able way" problem. Like I just need to be pointed at where to start and don't expect someone to guide me through it all

keen bone
#

nginx, traefik. etc

tight mango
#

If you use Docker then IMO Traefik is the one true way

#

(not that NGINX, Caddy, etc suck, it's just that Traefik integrates so nicely)

jagged harness
# tight mango If you use Docker then IMO Traefik is the _one true way_

I'm looking at the documentation for traefik, and it's leaving me a bit confused. The only time it mentions your domain is to to say you have to set a config value to your domain. But there must be some other step. If that's all there is, anyone could hijack any domain they don't own using that.
I feel like there's something really obvious that I'm missing here

#

Maybe I shouldn't be trying to learn this at almost 3AM, lol

tight mango
#

Well, no, they can't

#

DNS has to resolve to the right IP still

#

And getting SSL certs requires that you control the DNS in some way too

jagged harness
#

oh, am I supposed to be running the traefik image on the server already tied to the domain? Like the one the webpage is already hosted on?

tight mango
#

It's a reverse proxy, so ... kind of

tepid vector
#

If you're new to reverse proxies, maybe an illustration would help with the concept.

jagged harness
#

The home server I'm wanting to run the service I'm talking about doesn't have a static IP.
Also I don't have control over the modem for my apartment's internet (I do have control over the wifi router though). All I know about the actual setup is that my internet is a virtual network controlled by the apartment. I'm not sure if that matters

tight mango
#

It matters

tepid vector
#

Everything that happens outside of your LAN is just regular internet stuff. It's only once the traffic gets into your LAN that the reverse proxy considers what the user actually asked for and servers the right application.

tight mango
#

And you're probably, kind of, hosed, but not totally - you can work around those limitations in various ways

#

Tailscale is one way

#

CF tunnels is the easy one, if you own your own domain

jagged harness
#

I'm currently using cloudflared for home assistant and several other stuff. So I know that works at least

#

Although this would be a good opportunity to learn how to use a reverse proxy, since I want this to be tied to a different domain than the one I'm using for all the cloudflare tunnel stuff

tight mango
#

CF tunnels work because they're outbound for setup, without a public IP or being able to get a port forward then a (simple) reverse proxy won't work

jagged harness
#

Oh, I just noticed that my router has a DDNS service built in that will give me a url that's just [random string].asuscomm.com
Probably the simpliest way would be to just make an DNA record that points to that on my domain.
I'm not sure how secure that is compared to the reverse proxy

tight mango
#

The good news is no different for security

#

The bad news is that it'll return the IP of the modem, rather than your router, I suspect

jagged harness
#

I guess it might help to say what this is for also: I'm wanting to host a personal matrix instance.
So unlike the stuff I'm currently hosting, it needs to be accessible by more than just my personal devices

tight mango
#

Easy check - what's the first two sets of numbers shown in the router's admin pages for the WAN IP

#

For example 10.15.x.y

jagged harness
#

Is that the same as the IP I go to to look at router settings?

#

oh, you said WAN not LAN

tight mango
#

Yes, the external IP, not the internal one

jagged harness
#

It starts with 100.65

tight mango
#

You're fucked

#

That's what's known as CGNAT, aka not public IP

#

That router DDNS, that's gonna do nothing for you

#

Same with any DDNS, or anything that needs port forwarding

#

CF tunnels is the way forwards

jagged harness
#

I wish everyone would agree to just use IPv6. Half of internet stuff seems to be workarounds stacked like 5 layers deep to deal with ipv4 exhauastion

#

Thanks for helping me figure that all out though!

#

If it does help with anything, the server tied to that domain is a linux server that I'm able to ssh into. I don't have admin/root access, so I can't install stuff. But I can run binaries I manually download to it

tight mango
#

Well, you can change where the domain resolves to

#

You can also create hosts in the domain that use your CF tunnel

jagged harness
# plush gull what domain?

the domain is just magnusvesper.com
my goal for this is to host a matrix instance at matrix.magnusvesper.com (without interfereing with the website)
But I may want to run other stuff. Basically, I'll use that for any services I intend other people to use.
I have a different domain that's just a random combination of words that I use for stuff only I would ever access

jagged harness
tight mango
#

my goal for this is to host a matrix instance at matrix.magnusvesper.com (without interfereing with the website)
Easy

plush gull
#

Like I also have the same where I live in an apartment building and have no public IP. So I can only host via ngrok or something else that tunnels

#

If you really want to host stuff at home and expose to the public, you could also consider just get a small VPS and creating your own tunnel

jagged harness
#

Fun fact reguarding that "ai" is a valid web domain. Just "ai" with no dots. Have fun trying to visit it, since browsers think it's invalid. But you can do a DNS lookup of "ai" to see it does have an ANAME record. It's currently the only domain (with an A record) with no dots in it

plush gull
#

I believe that is also an option, but I don't believe its easy as 1-2-3

tight mango
#

Not as seamless as CF tunnels, but damn close

tepid vector
jagged harness
tight mango
jagged harness
tepid vector
#

(and read the rest of the blog while you're there tapshead)

tight mango
#

I need to write more, but the idea fairy got drowned out by busy lately

#

And by lately I mean since about the middle of last year

tepid vector
#

That's better than my last publish date 😂

jagged harness
#

I should start some sort of blog, one of my friends has been encouraging me to. I keep starting personal projects in which I learn an unnecessary amount of detail about the thing I'm using.
Like I'm currently doing something with a brushless motor, which need little driver boards. I could have stopped at "turn dial to change speed". But instead, I'm writing a library so I can use the debug interface it has to pull data from its ram as it runs

#

At the very least, I should put stuff about my projects on my website. All I have now is this homepage http://magnusvesper.com

tight mango
fringe hemlock
# tight mango I want to do an article on <https://cloudfree.shop/product/sinilink-usb-switch-f...

that's cool! Although a bit expensive ... I mean basically all hubs have the functionality by design but only very few are implementing the usb standard like this and so it's almost not possible. Like for the raspi that's kinda sad. Would be great if every port would be switchable (you can only switch off all ports or none – though I think you have two "hub" at least 2.0 and 3.0? forgot about that... think not tho sadly)

fringe hemlock
#

folks.. while hanging my wet clothes I tried to solve my problem for a proper bike light. there are some kits for mucho dinero that can transform the power from the wheel dynamo into usable energy for the Li-puffer-battery. Now I wonder ... there must be already some cooler project with ESP32s and some awesome displays

jagged harness
#

Adafruit sells PD triggers that support I2C. So you could make one with that I guess.
I've been playing around with one, and it's cool. You can read what voltage/current combos are supported and change the voltage requested after it's plugged in

#

Adafruit's ChatGPT generated library is pretty annoying at times though

#

Like it chose to represent voltage and current as enums. And every function has its own type of enum.
So "get selected current" and "get supported current" return different types, even though both have the exact same set of values that could be returned. Same thing is true for voltage.

fringe hemlock
quaint ore
#

how do you start building a house dose anyone know

thorn ore
#

Draw up some plans first. Then pick up a hammer.

quaint ore
#

i dont really know what to draw im a new home owner

thorn ore
#

If you already own a home why do you want to start building another one? And why are you asking in a completely unrelated forum that is about home automation?

queen briar
#

Anyone use the Workday sensor? I need a good way to stop certain automations from running on weekends and holidays. But it seems that either it isn't working or it doesn't treat Christmas Eve as a holiday

#

I have a time of use power plan, I have automations that charge my batteries on grid power if the sun is poor as well as switch to battery power during peak hours and turn off some high power stuff. But they don't need to do that on holidays and weekends. Weekends are easy enough but I need a way to incorporate major holiday exclusions as well

thorn ore
#

You can add holidays to it. Make sure your country code is correct first. Best discussed in #1284966582375813201

queen briar
dawn heath
#

Hello! I was hoping to get some help with generic linux<> hard drive issue i've come across, is it okay to post the qn/problemn here?

#

(i do have HA but this is not related, though it is an issue with my server)

crystal vector
#

TIL to always check forums before buying a product... Bought the MyStrom button..

gentle briar
#

I just used portainer the wrong way to download latest frigate image. I used the recreate container and pull image option now frigate is down. The latest version of portainer is slightly different I used to just go in and repull image and I think I went a little 2 far. Anyone know how I might be able to recover my previous container and settings?

olive owl
#

That sounds totally fine and normal

#

Pulling and recreating the container is normal

#

Review the logs to see what it's complaining about

gentle briar
#

Just in reviewing the container it seems that the directories where i actually stored my config etc are now back to the default. It has honestly been almost 2 years that this has been running so I am going to have to refresh my memory on all things docker again ha.

#

I think it lost my configuration settings like i stored config in directory frigate-config but it was showing /config

olive owl
#

Seems like you didn't map that directory

gentle briar
#

I am kind of explaining that recreate is probably not the right option it did say anything not persistant will not be saved and maybe that includes the original docker configuration 😦

olive owl
#

It's absolutely the right option

#

You should map the directory properly

#

Containers are ephemeral and should contain no persistent data at all

#

Anytime you pull an image you need to recreate the container

#

Or change anything about it at all.

gentle briar
#

I have been upgrading with portainer up until 13.2 and I just recently upgraded portainer and the interface is different now. Never had a problem. So feels like I did something different I never had to reconfigure anything.

olive owl
#

Ok

gentle briar
#

I just always pulled the latest image for frigate and kept on going. But let's see what the logs will say.

olive owl
trail iris
#

Ordered my own 4CH SSR switch box for my floor heating. no more clicky di click click.

fringe hemlock
#

I hate it when it clicks 😦

trail iris
#

Just made a switch board for zigbee that uses solid state relays.

fringe hemlock
#

tell me all about it 😄

plush gull
#

So omg, The primagen is playing with Devin (that $500/month AI that should work as a junior)

#

The first video he posted he had to try really hard to get it to push to master

#

And in the second video he's making an ape out of it and it's so funny to watch

jagged harness
#

Just found a neat command line tool for linunx: yq
It lets you filter and modify yaml files.
If you're used jq, which is the same for json, it's just a wrapper for that and uses the same syntax. yq also comes with xq and tomlq which do the same for xml and toml.
Example:

❯ yq -Y '.http' configuration.yaml
use_x_forwarded_for: true
trusted_proxies:
  - 172.16.0.0/24
  - 192.168.32.0/24

Could be useful if you wanted like a setup script that changed something in the config.

sly hatch
#

Hi guys!
I'm completly new, terminal has been set up few hours ago.
I would like to start with HA configuration but before begin I have one question.

I have got vacuum machine, Roborock S5 MAX, normaly I used app Xiaomi Home to connect with Roborock S5 and set up vacuum in correct way.
How it works ?
Do I still need app Xiaomi Home? or connecting vacuum via Sonoff Zigbee 3.0 USB Dongle Plus is enough and app Xiaomi Home is not needed anymore ?

I'm asking this question because I have a router with "Easy Mesh" solution, WiFi 2.4G and 5G are together in one WiFI network, I would like to keep it.
but I have a problem with connect smart devices because of smart devices required 2.4G...

the Roborock was just example
I would like to understand if I still need extra apps for specific devices
or HA is all what I need ?

hallow lance
#

It depends on the device. For some you need the app for others you don't.

#

And if a device supports Zigbee, you might use it with the Sonoff Zigbee stick. If it doesn't, you cannot.

sly hatch
#

then what about wifi 2.4g and 5g in one wifi

#

it will be better to separte it right ?

hallow lance
#

It depends. Some devices can get along with it, some have problems.

sly hatch
#

I was trying to connect doorbell from Xiaomi, and boiler from Ariston, both have a problem

hallow lance
#

Sometimes it is sufficient to turn off 5GHz for the setup process and turning it back on after.

sly hatch
#

I think it will be better to separate them in advance, than make all of the connection one more time in the future, once I will have device which cannot be connected via Zigbee

sly hatch
round gust
#

I've been making weird home assistant gadgets, and decided to make a board that'd handle things like driving motors, pumps, LED's, and vape coils (to act as mini smoke machines), just sent in an order for five (minimum order) and kinda nervous to see if it actually does the thing

#

it's essentially a featherwing, since I use the esp32 s3 feather a lot

#

having too much fun

#

It's a bit essoteric to sell, but I wanted to lean into making it as if I would to keep myself from being sloppy, so it has notes on the board for use, maximum current in different areas, a place to calculate current draw... I did forget that it'd probably be wave soldered, so I planned for goldish contacts... but live and learn

plush gull
round gust
#

Trying for single, might have to revise up later depending on how it shakes out

#

Now I'm nervous, is there a reason a single esp32 s3 can't stream music and send i2c commands?

tame cave
#

Mirrored on purpose?

round gust
#

Mirrored accidentally, decided to leave it on on purpose 😉

blazing hare
#

Love a bit of Emma

round gust
#

it's a line you can set your watch by

#

If I didn't fuck anything up too bad, the test piece will be american gothic, but it's skeletons in hazmat suits in front of a burning oil well, with smoke and lights timed to the music playing

#

this is my second board, so it's a big if

dim solar
#

I'm having a dumb moment.....

#

two entities, but I can't see / add sensor.ups_switch_energy to the Energy dashboard - ie it doesn't even show up

#

what have I done wrong?

#

ah - recorder wildcards 😄

haughty kiln
dim solar
haughty kiln
#

Aha, fair enough! Tyvm

keen pine
#

I duno who needs to know this, but silicone insulation project wire is AMAZING! I can solder/resolder/touchup things and not have the insulation melt/ bend/ deform/ degrade! Also with the smaller gauge, I cn easily strip the wire with my thumbnail! its SO NEAT! 👍🙂

#

it also twists together well to make itty bitty looms to keep wiring inside small project boxes clean:

#

so nifty!!

blazing hare
#

Yeah silicone wire is awesome. I bought a couple of coloured sets a few years ago and use them for all small projects like that if I'm soldering rather than crimping

keen pine
#

really speeds things up. I got one of the set of rolls in a dispensor - works great on the bench

blazing hare
#

Yup! Sadly I do crimp a lot, I like being able to disconnect things when I inevitably break them, and find the insulation doesn't hold up well to that

haughty kiln
blazing hare
#

It would be lore accurate for their wires to snap

haughty kiln
#

"Target lost"

#

"Are you (the wire) still there?"

sly crystal
keen bone
sly crystal
#

I opted to go for the integration path because that's somethign I have the least expereince about, and actually wanted to learn about for quite a while 😅

#

I'm actually making a copy of the acaia component and modify it to work with the bookoo component. Currently trying to figure out to deal with the aioacara package. I know how to use the packages, but I've never done any active dev work on one.

How do I locally manage a separate package like the one in aioacara, or in my case a copy of it, so I can work on it and the home assistant integration at the same time? It seems I can open the installed aioacara package in the dev environment, but I figure working on it is supposed to be done differently?

sly crystal
#

Any idea what's the best place to find answers for python related questions like this? I feel like I spend a lot of time researching them, like significantly more time than actually reading/modifying/writing code 🤯 I know it's the price of getting started with something new, just trying to gain some more traction 🤔

#

Wow, github copilot actually gave a pretty decent answer, suggesting to clone the aioacaia repo and use pip install -e to install the package in editable mode.

But since I'm using the home assistant dev container, how does this repaint the picture? Do I clone the repo in the dev container? Do I clone it on my local system and reference the local repository in the dev container?

olive owl
#

Go to the Channels and Roles channel at the top and select Development. Then use the developer channels here for questions .

#

And I assume that you've seen the HA dev documentation?

sly crystal
#

Actually thinking about it, I was following the flow, which was interrupted with the broken scaffold script 🙈

olive owl
sly crystal
#

thanks!

split widget
#

This isn't specifically a smart home question, so not sure where to ask, but I'm trying to come up with an equation for determining how long it will take to heat my house. I think the variables would at least be the current and target temperature, outside temperature, and then some factor to tune.

tight mango
#

You need to also understand the thermal mass, what your losses are, and what your (heat) inputs are

#

If you're adding (say) 5K BTU and losing (say) 1K BTU then that's a net positive 4K BTU, which is quite different than if you're adding 2K...

split widget
#

Yeah it wouldn't be an exact science, but I think that could be captured with the factor variable i could tune over time, no?

tight mango
#

Personally, I'd do it experimentally. Turn off the heating. Measure the rate of loss over an hour.

#

Turn the heating on, measure how quickly it climbs by one or two degrees

#

Repeat this when the outside temperature is meaningfully different

#

I'm sure there's a bunch of material online about this, it's pretty much bread-and-butter of heating engineers

split widget
#

Well what affects it more than I expected was the outside temperature. At my last place I had forced air and it didn't seem to matter too much, but we have radiators now and it can take hours

tight mango
#

That's probably partly because of heat loss

#

Also radiators heat the air indirectly, so it'll take longer for the air temperature to change

split widget
tight mango
#

We mostly don't find that it takes long for radiators to heat rooms here, but there's one room that's exposed on two sides and is just a single story - that room also cools down a lot faster than the others

split widget
#

Yeah it's an old house so lots of heat loss

#

I know how the different variables should affect the final number, but I can't seem to think of how to put it all together into one equation

vagrant sparrow
#

i guess you need a per room heat loss factor to multiply with the temperature difference between the inside and outside. also some per room constant to define how much mass to heat. not just the air, but surfaces, heavy heat conducting objects etc.

blazing hare
#

It's a really messy calculation. If you know the style of radiators and a tape measure you can work out roughly how much heat your radiators output, but there's a lot of history in it as well. If your walls have cooled down your air temp will rise slower and cool faster than it would if they were warmer

#

And your wall temp can vary based on how much you've heated the room in the last day, insulation, material, wind, rain, snow, time of day and year...

#

Of course there's also latent heat of people/pets/devices that can also throw things off

tame cave
#

100 to 300W heat output per human depending on activity levels

blazing hare
#

100W is about right for sleeping, awake is about 150W, exercising can be 1kW or more

split widget
#

I just need to figure out how to put those into an equation along with a variable factor I can tune which is basically I think a standin for my heat loss like Tinkerer was saying

#

I don't think I need to get too technical with it like figuring out the heat output or the size of the room, etc. That would all be handled by the factor number that I can tune

blazing hare
#

You could probably fudge it sufficiently

split widget
#

Yeah I'm just terrible at math but maybe I'm overthinking it. Gonna give something I came up with a shot

blazing hare
#

In the very loosest terms:

dT/dt = (some scaling factor) * (heat going in, only really related to how many and which radiators are on unless you have a heat pump or an under sized boiler) - (scaling factor related to the size and insulation of your walls, roof and floors) * (inside temperature - outside temperature)

Which you can then integrate from T_current to T_target to get your time

split widget
#

Why would I need more than one scaling factor?

#

And I think I can just assume the heat going in per room is the same, or if not I would think the scaling factor would handle it

vernal comet
#

Hey guys and gals, I'm pretty new to Home assistant. have it running on a Pi for over a year now, but since yesterday I moved it over on VM on my new home server.

I started working on my automations and whenever I build a new automation now using the GUI in zha it just disappears from the list the moment I save it... I don't know what to do..

split widget
vernal comet
split widget
#

Create a post like I mentioned and ping me and I'll follow up

blazing hare
# split widget Why would I need more than one scaling factor?

Because the two are completely unrelated
You have 3 solid(ish) numbers (heat in, temperature inside, temperature outside - the latter 2 combine to give you your deltt_T) and you have some level of fudge factor for both - the first is just the inverse of the thermal mass of your house (how much the temperature rises per unit of heat) and the second is a jumble of different things related to thermal conductivity, heat flux, and also the thermal mass of the house

pastel igloo
#

Warning, differential equations needed, as the heat energy flux depends on the delta-T. 😅 It may become relatively complicated, so, at least my heat pump mfg has settled to an empirical look-up-table.

wintry cloak
#

hey guys! is this an appropriate channel to ask you a question about an esp project i’m trying to work on? (I’m a total beginner to this whole ha thing lol)

hallow lance
#

Most likely the ESPHome Discord. Otherwise #1284966353798697001 with the "DIY IoT" tag on this Discord.

wintry cloak
#

fire

#

thanks man

harsh harness
#

(this is not a request for help)

I bought a bunch of Minir4's, and want to flash ESP home

It has some exposed pads, but when i tried to use putty to hold pins against the pads, i wasnt happy with the result, and my attempt at sodlering to them... leaves a lot to be desired.

Figured i could hold pins against them if i 3d printed a holder. I have a high res pic,

Plan is to make something like this, once i get the measurements

#

that way i snap the pins into the holder, and then clip this onto the device. little bit of spring to hold it against the device

thorn ore
harsh harness
#

yuea, that would be a much better way of doing what i plan to

#

going to save those plans

harsh harness
crystal pond
#

Logger: homeassistant.components.automation.inside_lights_off_at_3_am
Source: components/automation/init.py:776
integration: Automation (documentation, issues)
First occurred: January 8, 2025 at 3:00:32 AM (1 occurrences)
Last logged: January 8, 2025 at 3:00:32 AM

Error while executing automation automation.inside_lights_off_at_3_am:

#

not much of a error?

#

trigger:
- platform: time
at: "03:00:00"

I swear there is something wrong with this now

#

its a VERY simple automation

hallow lance
meager quail
#

Makes such a huge difference

keen bone
#

and also probably just use leaded solder

#

unless you have an explici reason not to

#

messy cleanup a bit.. but you don't technically have to clean it off.. but goddamn it works

harsh harness
#

I have some... Ok flux, not great stuff

But yea, leaded solder.

#

I think I have some amtech knockoff.

trail fractal
keen bone
#

rosin core stuff is.. like...

#

it technically works.

but its also Mehhhhh

tulip steeple
#

has anyone tried any of the new asus NUCs yet?

safe comet
#

How do you guys handles large number of devices on the dashboard?
Like i have seen some people use room cards and such, but i have maby 10 lights in one room, and the button turns them all on, when normal usage is max 2 lights on. i dont think i've ever had all lights on in a room :/

Right now im playing with the idea of bubble card, so 1 button for each room that opens a pop-up with the lights / devices for that room.
What other good ideas do we have? the main idea is to not have a dashboard with 100 buttons, because that will just make it take longer to find the correct button than to just use the normal lightswitch 😛

vagrant sparrow
#

i make multiple dashboards, so in the default one i keep all enabled sensors divided by rooms. mostly for debugging or getting at seldom used ones. then i have one for cell phones with the bare minimum that offers switches for the most commonly used groups of lights, the living room thermostat and such. my lights are in zigbee groups set up through z2m making it easy to target them.

#

on cell phones just make the simplified dashboard the default one

safe comet
#

well yea, i have one layout for phones (this needs upgrading aswell, but ill get to that later). right now im concerned with getting the wall tablet better configured, we have had it on the wall for 3 years now, but i dont think anyone used it more than maby 5 times total -.-' i need to de-clutter it and make it more user friendly.. (tho im a backend developer and anything that has to do with design is my worst enemy)

#

what other ideas have people tried and liked / dissliked? like maby filtering the devices to only show what is on / off? or only show devices for rooms where the motion sensor has turned on?

#

untill now i've mostly used buttons with the most accurate MDI icon i could find, but that also means i got multiple lights with the same icon for different rooms... like a window for the window light

#

or is it better to just do the work and get a full floorplan in, maby have home feed and weather at top and then a floorplan under?

vagrant sparrow
#

personally i like having meaningful groups of lights. zigbee will only send one message for each group instead of individual messages to each bulb. and you can even set up your wall switch to bind directly to the groups for e.g. on/off so that you can turn lights on and off without even involving ha. except the orchestrator must be up of course. still won't work if your ha host has the orchestrator and it is completely down.

for statically mounted panels i would let it default to just the room it is in, and offer a way to switch to another room. then just keep it as simple as possible. either scenes based on common activities in that room or groups of lights with one simple button per group. depending on what your family likes. design both kinds for one of your rooms with an easy way to switch and let them see which one they prefer.

fervent zenith
#

smarthome powered by redstone

safe comet
#

having the tablet be for that room with option to switch room makes some sense, grouping lights ive tried but didnt like, i found myself needing to go out of my way to controll them individually way to often. scripts to control the whole house like "cleaning" "cozy" "bed time" and so seems to make more sense.

harsh harness
keen bone
vital notch
#

Hello, I got a HA voice preview, and I'm looking to interface with it without HA (ie I want to write a server that speaks Wyoming). Does anyone have any info on how I can talk to the device?

vital notch
keen bone
#

Anyone who has a bit of PCB experience able to take a peek over a schematic I've gotten drawn up for an ESP HVAC controller bridge (simple thing, ssrs and optos) aside from clearly needing to add a capacitor between the rectified mains and the regulator?

AT222 SSR
Toshiba Optocouplers

Just to make sure I didn't screw anything up before I submit an order.

winged blaze
#

I'm new to HA and migrating from HS4. I'm curious about how others have named their devices in HA. In HS4, for example, my Office Ceiling Lights have a device name of "Ceiling Lights" and a device location of "Office." As I understand that, that would make the HA Area "Office," but would that translate to a HA Name of "Ceiling Lights" or "Office Ceiling Lights" (repeating the Area name)?

keen bone
#

Whatever the hell you want.. Area doesn't factor into names. 😄

#

would suggest to try and have some level of consistency though as to not drive yourself insane trying to find something and etc

tight mango
#

The answer can be simple, or complicated, it depends on how you expect to use the name. I don't add the area/room to things like lights, but I do for doors and windows - because getting told that the window is open isn't very helpful 😄

fringe hemlock
#

my take on this: Make every light have USP 😄 like giving them something special that I can refer to

tight mango
#

I almost never use voice to turn on/off one specific light, it's typically at a room level

#

turn off the lights is all that you need

blazing hare
#

I do something like (room)_(fitting)_(bulb), but group bulbs at the zigbee level into (room)_(fitting) - which is the same format as I use for smart switches triggering dumb bulbs

merry locust
#

I strive to never add the room or "light" or "lamp" to names as this info is redundant. It's not always convenient though.

blazing hare
#

it's redundant, but useful for coming up with unique ids 😛

#

the (bulb) is just a number - my living room has 2x 5 bulb fixtures - so it's "living_room_[south/north]_[1-5]" - and they'll be controlled by the switch "switch.living_room_[south/north]"

raven sage
#

There's some places in the Home Assistant UI - the automatic dashboard screen for example - where if the device/entity name starts with the area name, it'll automatically hide that part of the name to reduce duplication.

#

so I've generally put the room name into the device name, and then adjust the display where needed e.g. in custom dashboards to hide it.

#

it's also handy when writing automations to have the room name in the entity ids and entity name (for yaml vs visual editor) since the area of the device isn't directly visible there.

thorn ore
plush gull
#

Share your concerns in the proposal 🙂

blazing hare
#

It'd sure as hell make me think twice about updating

tight mango
#

(I have commented)

crude grotto
#

Anybody know how I'd go about making a sort of "switch bot" to control my ERV? My apartment has one and it runs 24/7 for air quality purposes. Problem is, it's loud as hell. The only way to turn the ERV part on and off is to open a big metal cover on the wall in my living room and hit the power switch. I want the ERV to run whenever I'm not home and turning it on and off constantly is annoying.

I was thinking I'd just use a big servo of some kind and an esp32 with esphome. A big servo would have no problem flipping the switch. https://esphome.io/components/servo.html it seems that esphome can do everything I need?

#

If anybody else has any ideas I'd love to hear them :)

#

This is what the switch looks like. Excuse the weird angle, it's hard to take a pic and hold the door open at the same time lol!

I was thinking I'd just make a custom servo arm.

keen bone
crude grotto
#

yeah I can't do that

#

rental and fire risk. nooo way am i opening it

#

even if i owned the unit it would not be my property still

keen bone
#

is it plugged in

#

or is it hardwired?

#

And also a little servo wouldn't terribly struggle with a switch like that either unless its seriously chunky to switch it.

#

question fot the servo thing would of course be.. is it easy to attach things without leaving marks behind on that? is the front aluminum or magnetic steel? etc. 😄

crude grotto
keen bone
#

so.. probably some strong magnets for mounting I imagine then.. or maybe some tabs that hook in under that metal front panel.

crude grotto
#

yeah i think magnets would work

keen bone
#

magnets or parts with tabs that slide inside; either/or.. and I dont think you're gonna need a terribly large servo

#

mg9 should probably do just fine for that.

crude grotto
#

yeah should be ok

tulip steeple
#

anyone have a clue what this guy is talking about? https://community.home-assistant.io/t/ha-solar-tracker/571372/27?u=langestefan

blazing hare
#

He doesn't like how the home assistant solar position tracking works so diyed it with an arduino
Wind parking is turning the panel to be parallel to the wind so the forces on the mount are lower
No clue what he means by shadow parking

tulip steeple
blazing hare
#

That's definitely not the weirdest thing about that post

trail fractal
#

I guess parking it when it's fully shadowed to reduce wear and tear on the motion system?

blazing hare
#

Maybe? Though I'd have thought not moving when shadowed would be better for that than moving to some home position

vagrant sparrow
#

wind parking i can understand. move to a position less likely to get damaged by wind. shadow parking should just be "sit still and ignore any movement commands until handbrake is released"

trail fractal
#

Lol if spacecraft keep tracking the sun during periods of eclipse, so should ground based solar!

strong token
#

what does it mean?

fickle olive
#

Does anyone by any chance know more about SMD diodes?
I can barely find anything about this diode... I only know that it can handle about 13V, which checks out cause it's shorting out the 12V rail from a HDD.

#

I have a bunch of other scrap devices but none of them have a diode starting with 6BG, not sure if I can just wing it and put a close one in...

pearl bramble
#

Im not sure if this is the correct channel, but I was toying with the idea of getting garage door contact sensors, but I do have a unifi g3 camera in my garage. I believe I can get the same result of just knowing if my garage doors are open / shut through some kinda of AI integration. Anyone have suggestions?

mild grove
blazing hare
#

I'd guess easier to just put something together with esphome and a contact switch or something, but done sort of image recognition shouldn't be too hard - checking for a coloured sticker or qr code in a particular part of the image doesn't seem to difficult and likely more responsive than just throwing the whole thing into ai

visual kernel
#

What's the smallest computer that can support HAOS? Small in size that is.

mild grove
#

probably some thin clients

native valve
#

how does lovelace not have a builtin digital clock card 🙃

meager quail
#

Clock weather card in HACs is pretty good.

thorn ore
raw crow
#

Is it possible to send the notifications that I have sent to my phone to the dashboard as well?

I think it would be cool if there was a button on a dashboard that had a small number on it (number of notifications), and when you press it a window opens with all the notifications.

Is that possible in any way?

mild grove
#

Persistent notification and the default notification tab?

plush wraith
#

how would I go about setting up a kasa ep10 smart switch?

tight mango
sharp creek
#

hello everyone 👋

#

new here just getting to grips. I've got an energy monitoring smart plug i've set up it shows me my total kwh this month and i know my per kwh from my energy entity from energy provider. Is it possible for me to make something which multiplies the two such that i can show the cost on my dashboard?

#

happy to do some reading into it just getting used to terminology and knowing if i need to make an addon or custom entity or something like that

tepid vector
#

Check #1284966203026182206 . There's bound to be an existing post about exactly that. If not, feel free to make a new one.

sharp creek
#

thank you 👍

tulip steeple
delicate notch
#

Apologies for this not being directly related to HA but I have been noodling on this problem for awhile and thought I might get some help from the smart folks here:

I have a Surface Pro that is running the latest LTS version of Ubuntu (24.04)... I know, crazy start already, right? Everything works really well and I have everything configured as I want it except for one small issue. It seems like the 'touch screen' sensor times out after a few minutes and gets 'confused' when it gets touched again. For example, if I walk up to the screen and tap on a card on the dashboard, the 'right click' menu for the browser will open up and I will need to tap elsewhere to dismiss it and then tap what I wanted to tap in the first place. I have found a workaround where I can tap on a blank spot on the dashboard before tapping the card that I want to interact with and that works for me and my wife but it is not intuitive for anyone else that may interact with the dashboard.
I don't have the correct words or its a problem that others haven't experienced before because repeated google searches using different terms has only gotten me solutions or diagnostics that produce no results.
I've even asked chatgpt and it was also less than helpful despite a very detailed back and forth where I was almost conviced it knew what I was talking about
anyway, as I said, its a minor thing but its been taking space in my brain for too long and I need to get it out.

#

I have tried multiple browsers, confirmed and adjusted all touch screen settings in the OS, and updated from 22.04 -> 24.04.

faint pelican
#

Is there a way to make a fake device from IR commands? I have scripts with all the IR commands but want to make it a device so I can then hook it up to dashboards and some other stuff a bit easier.

I'm sure its possible but cant seem to find documentation on it.. suspect I am using the wrong terms.

tight mango
winged blaze
#

Is it possible to have presets (buttons) available and appear on a light dimmer device instead of dragging up/down to guess where the desired % value is?

cedar shoal
winged blaze
# tight mango <#1284965988642590891> can help there

I was more thinking of the device control screen itself. Right now, a dimmable light just has a slider and a power button. It would be nice to add additional buttons for specific percentages or brightness levels. Both per device and across the board.

tight mango
#

And for feature requests:

eternal surgeBOT
#

If you have a feature request for the frontend you can open one here, for Home Assistant itself please post on the forum. All other feature requests should be made to the developer of that custom card/component.

winged blaze
#

Thank you! Can you tell me if the interface I'm talking about is specific to an integration or is more generic and core to HA?

tight mango
#

I'd assume it's generic

winged blaze
#

Sorry this one

tight mango
winged blaze
#

Thank you

drifting trench
#

anyone got any recommendations for soldering microscopes?

#

I was looking at some amscope stereo ones but they're expensive in canada

thorn ore
thorn ore
#

You're looking at about $500 CAD shipped. Which really is a good deal considering the quality. Don't be tempted by USB microscopes, the latency and lack of stereo vision will drive you mad if doing more than casual SMD work.

tulip steeple
#

I have the same one, highly recommend it

#

It's a mess but to give you an idea

tulip steeple
#

You mean the pcb?

tulip steeple
#

It's an ad

strange elk
#

anyone playing with home-brew DIY zigbee stuff?
i have a problem with cleaning up after examples I connected
right now my RGB light bulb has pressure and flow data in Z2M device state 😅

strange elk
#

rebooting HA seems to have cleaned up the weird states

vast leaf
#

Hi guys, what's the easiest way to control a linear actuator using a key fob?

trail fractal
#

<@&330946878646517761> ^^^

blazing hare
vagrant sparrow
#

https://www.cnx-software.com/2025/02/01/credit-card-sized-quad-relay-iot-board-runs-tasmota-firmware-on-esp32-module/

small, has relays, runs tasmota. $29 plus shipping. but it's on kickstarter, so ymmv. just add rfid reader for the fob.

The "ESP32 IoT Relay Board" is a credit card-sized ESP32 board with four small 250VAC/30VDC 7A relays that runs Tasmota open-source firmware and supports

vast leaf
#

What does NFC have to do with controlling a Linear actuator?

blazing hare
#

You're the one who specified using a key fob to trigger it... Those are generally nfc or rfid

blazing hare
# mild grove 433 too

That's more for wireless buttons than what I'd call a keyfob though (a thing you touch to a pad to make something happen, normally open a door/box etc) - but that might just be language issues

mild grove
blazing hare
#

Ah gotcha

#

Ah well. I'll work on fixing that once you guys learn what chips are and how to spell aluminium

vast leaf
#

Oow, my bet. I ment the same thing you use to open a car

midnight cradle
#

we call those crowbars

mild grove
midnight cradle
#

only for dummies who drive kias

trail fractal
#

--US citizen

olive owl
#

keyfob is also good in the US

#

used to just be a non-electronic, non-mechanical thing to hold onto a key ring, but has evolved to be the car remote/key itself

vast leaf
#

I get the ESP 32 relais bit, but what should I get to make it work with, basically a remote like that?

teal heath
modern basin
knotty trail
#

Anyone having a case where HA fail to save backup configuration?

jagged merlin
#

Created a stand mount for wall mounts. It's hard to find a decent stand for most tablets but wall mounts are everywhere, so I came up with a solution ;)

hallow lance
dire pecan
#

I got the picture frames for my e-paper display project today! I’m excited to see how much I learn making this. BongoCatEyes

dire pecan
#

I have managed to absolutely fuck up some code - but at least it gives me the errors when it fails. 😅

blazing hare
#

So long as it keeps the magic smoke contained it's fine

dire pecan
#

So far it does!

#

😂

fluid hemlock
olive owl
#

what is the Orbit controller doing?

fluid hemlock
#

Customer of mine had a sprinkler controller die and a wire cut... I already made this little ESP32 relay box with temperature/humidity/sound sensors. Was an easy sell and got them back up and running within 4hrs :)

olive owl
#

seems like you have everything you need

fluid hemlock
#

I left the old unit in there because it's not mine to take :p

olive owl
#

ah

#

nice, clean work!

fluid hemlock
#

Oh c'mon man nobody is geographically located near me in this server lol

olive owl
#

I'm just saying that that channel is intended for showing off stuff you've done

#

that's what it's there for

exotic crow
#

is this the right place to drop a question about zigbee?

exotic crow
#

thank you 🙂

dawn lodge
#

ugh. just finished soldering up & flashing 4 more (identical) d1 mini's for the rest of my mini splits, but tehy just stay at HVAC disconnected

#

i did not need to cut the trace on the original one I did (from the same batch)....so assume i dont need to cut it on the others, but none of the new ones show connected when I connect them to my unit in my office

digital grotto
#

Does anyone use tvheadend that can help me? I'm running a scan but it fails with no data

stray owl
#

Hello can someone help me how I made a 15 minute Timer, so that the switch switches every 15 minutes?

blazing hare
mild grove
oak moat
#

Just got HA running inside a vm. Lovin it. Bought bluetooth, z-wave, and zigbee controllers for it. First acquisition was smart plugs. Currently trying to figure out which bulbs I want to buy.

tacit roost
#

Is anyone here familiar with light switch wiring? I'm installing some inovelli smart switches on a three way light following this wiring schematic. The main part that is confusing me is the wiring in the box-to-light since it looks like the neutral is tied into the black wires. The left set of romex is the light in question

boreal onyx
#

Shit a brick. I thought the wiring in my house had issues. Ignoring feelings about wire nuts, and that everything's for some reason covered in paint, nothing good has happened for a white wire to be twisted with a black wire

tacit roost
#

yea I didn't do that, so now I'm pretty confused

#

the white wire in question looks like it's coming from the romex in this part of the diagram, but it's twisted with black wires to a switch for a separate light

#

anyone have any advice or resources they can point me towards?

boreal onyx
#

I'm gonna echo the earlier sentiment. Unless you're confident enough to pull that all apart, test each cable to see where it goes, work out a plan to include the smart switch, then reassemble it all, I would talk to a sparky (and get them to do all of those steps)

#

If you're not 100% sure you could take it apart and put it back together again, I wouldn't start taking it apart

blazing hare
#

Yeah, that's something I'd do myself but have zero confidence in walking someone through remotely

hallow lance
#

And as I said in #home-and-garden : if you are in any doubt, it is better to consult an electrician. No smart switch is worth putting yourself in danger.

tacit roost
#

I've changed plenty of light switches before so I'm not really concerned with that aspect, it's mainly just trying to figure out why the hell it's put together like this

teal heath
#

yup, if you have to ask then getting an electrician is usually the correct answer

tacit roost
#

I can kill the power and start toning wires, but I'd need a reference I think for how it's supposed to be

blazing hare
#

Fundamentally it's not that complicated. Lick the wires until you find the spicy one, then flick the switch until you find the one that goes to the lightbulb

boreal onyx
#

To give you some idea, here's one from my house, where I was adding a Shelly relay to a 2-way switch circuit. I made a big-ass diagram which matched up all of the colours of the cables and cores (including modernising one section with the correct modern colour of wire for a 2-way).
#the-water-cooler message

blazing hare
#

(or you know, use a mains tester and multimeter if you're afraid of spicy wires)

tacit roost
#

yea the presence of another switch in that box makes it a bit more complicated

fierce hemlock
#

anyone know where to go or how to integrate a shclage 469ZP z wave into home assistant, i was able to do it, but cannot get it to unlock my door with a g4doorbell pro by ubioquti

brisk prism
#

is anyone in the Valetudo Telegram Group? I am looking for a local Dreame breakout before I pull the trigger on 5 of them (min order count)

glass ice
#

im trying to add a background to a custom card, using - background-image: url("local/calecard.png") i put the png file in the www folder using the file editor add on but it does not appear on the card. can anyone tell me if im doing something wroong? i hope im posting this in the riight place if not just let me know.

surreal tartan
#

Hope I'm posting in the right place. So just learned the LG TV can use the hue sync app. Is there any kind of integration for it? I have the box and use that integration with no problem but I also know lg can't do as much vs a android tv

tight mango
eternal surgeBOT
#
The topic of this channel is:

The tinkerer's workshop!

Do you have a dedicated room or shed specifically to tinker with hardware in? Fan of protocols, how they work, and want to talk without things being support focused? Chat with your fellow hardware enthusiasts here! Commiserate over your struggles or celebrate your victories over technology here.

Remember to follow the Code of Conduct (https://www.home-assistant.io/code_of_conduct/) and our #rules - please review these at your leisure.

sinful mulch
#

Just waiting for the case and i can build my new pc :D

lethal anvil
#

Home Assistant made me do it. 😉👍🏽

meager quail
#

This is definitely "because you can" territory.

mild grove
jagged harness
#

I'm curious, is there a way to make a HA entity that can have its state retoactively changed? Like this is the idea I'd use it for:
When my front door is opened, then my phone disconnects from the wifi, it will mark me as "not home" starting from the time the door was open (which would be in the past)

tepid vector
#

Everything in HA is event-based. You're asking that something go back into the database and fake the times of the recorded events. Unlikely that anyone ever makes any kind of official integration that does that.

mild grove
jagged harness
#

I did just have a thought on a way I could detect this.
This is my front door. The lock on the bottom is a smart lock that HA is connected to.
The lock above it can only be turned from the inside. And I always lock it right after going in my apartment.
I could either use an ir laser/reflector to tell if the lever is up, or I could possibly fit some sensor in that door gap that detects the actual deadbolt being engaged.

jagged harness
tepid vector
#

Ah, an XY problem

teal heath
#

slap a reed switch on top of the smart lock and a magnet on the thumb turn

tepid vector
#

Get a mmwave sensor inside your apartment. Solved.

jagged harness
#

I do have a mmWave sensor that I put in my air quality box, which is on the wall by my desk. So I can tell how close I am from the sensor for a big area of my apartment.
But that's the only one I have set up. I still have like 20 mmWave sensor modules though. Maybe it would be less work to just set up enough to detect where I am throughout my whole apartment.

teal heath
#

mmwave with zones

mild grove
mellow cedar
#

Hi,
I tested Ollama in home assistant but unfortunately, my old AMD radeon rx5600 (6Mb) is not supported.
I successully had something working with "llama.cpp". I mean, with the following setup:

  • cpu= intel 3240 ( 2 cores 4 threads , 3.4Ghz)
  • 8Gb ram ( 4x 2Gb 1333 🙂 )
  • AMD Radeon RX 5600 XT (RADV NAVI10)
  • Llama-3.2-3B-Instruct-Q6_K_L.gguf

I'm currently at 50 tokens/s.
At the wall: 40/45W idle, and around 150W when running the LLM.
Not too bad...;-) 😉 😉
Yeah Baby Yeahh.
I'm now trying to have it in Home assistant.... Any advice ?

elfin sparrow
#

Hi, I have a random question,
What is the possibility of running non HA software on the HA Green and Yellow,

If I want to put my own OS and run non HA stuff,
Possible or stupid?

mild grove
#

Could you, probably. Why would you though is another question. N100s exist for cheap

teal heath
burnt quiver
#

I'm looking to install Home assistant OS on a raspberry and Frigate as an addon (so it will run on the raspberry too). Will i be able to plug coral into the raspberry and make it work with frigate?

burnt quiver
#

but no one's answering ☹️

olive owl
#

Nobody will answer here, either. Patience, grasshopper

sinful mulch
#

Progress!

blazing hare
#

I feel like their tagline is misleading

#

There's plenty of limits to the power

#

Looking good though!

mild grove
midnight cradle
#

*unless its an iPhone, you'll need a special $900 adapter

crimson fern
# sinful mulch Progress!

I'm envious! I'm still in the design phase of my build out. My meter (and backup generator) are 100' from the house, so I'm going with outdoor enclosures. I like the EG4 batteries, but might wind up with the Pytes batteries along with the Sol-Ark 15k.

keen bone
#

tfw upgrading to 10g for my desktop and etc.. when its cheaper to run a fiber (and more power efficient..) may as well run other stuff randomly too amirite? 🙃

#

monoprice purple cat6 was cheap.

sinful mulch
dim lava
#

Not sure if this is the right channel, this seems maybe too hardware based, but it's not actually a 'I need help with an integration' question for the integrations channel- it's more of a general development question, which is in-line with the 'protocol' question being asked/lack of support focus.
SO I would like to create a general pattern/protocol for 'package' entities- i.e. to track deliveries. I've seen several solutions- use an addon that scans your email, use 17track, etc. I would like something a bit more HA-worthy, something a bit more private than giving more of our data out to random companies that want to exploit us. After all, if we wanted our stuff in the cloud, we wouldn't be using HA in the first place! The thing that seems to make more sense is to make integrations for various tracking company's APIs ourselves- a USPS integration, a fedex integration, DHL, etc etc, which would create standardized 'package' entities that we could do stuff with. That all seems simple enough. The question here is more 'where would the discussion happen for designing what a standardized entity even looks like?' I cannot assume I will be making every single integration, and 'standardized' entities are common- thermostats, weather, cameras, etc, all tend to follow the same general patterns, but a standard is useless if there's no buy-in, and the best way to get buy-in is to make sure it actually meets people's needs- not just mine.

tepid vector
dim lava
#

lol well that looks potentially problematic then, since your post looks like this to me:

#

thank you for the info though, gonna go poke around the rules/annoucnements, maybe something got added sometime after I joined here, I've mostly lurked

#

aha!

#

Thank you, I didn't realize there was a developer section since I didn't have the role

golden garnet
#

Would love to get people’s opinions on matter, I currently don’t have it setup and Donny have ipv6 setup. I run a mix of zwave, Bluetooth, and network, and HomeKit devices. Is matter that game changing?

hallow lance
#

It might be in the future. But for now the feature set is too limited in my opinion and some companies are already abandoning Thread.

mild grove
#

Its not adding anything for us that us HA, we already can use most devices with HA by sticking an adapter usb into our box.

I also don't believe that interoperblity is the realy issue for the big names. Its lack of automation tools.

dire pecan
# golden garnet Would love to get people’s opinions on matter, I currently don’t have it setup a...

So my personal opinion on it aligns a lot with Jorg's, it has a lot of potential to be a game changer but it isn't quite yet there. HomeKit should already work with Matter devices, same with Google Home devices (iirc). Thread works over Matter anyway, so honestly if people stay focusing on Matter it should make Thread more stable over time; in my eyes, more work on Matter means people can work on Thread easier later - but it's totally possible it gets abandoned.

The problem Matter really has is a Marketing Problem™️ - they suck at it. Most people are like you: What is Matter? What's its benefits over the current protocols? Things like that.

I do think what we do with Matter in Home Assistant is good for us and Matter overall - adopting something early helps our community adopt the devices earlier. 😄

#

whoa that ended up way more of a novel than I expected, sorry lol

mild grove
#

The lack of thread support is my biggest concern with matter. Battery life alone will be dead if all door sensors have to on wifi. Not to mention most people's isp provided router can't handle that many devices.

hallow lance
#

And having a Zigbee hub to get sensors in Matter feels like a step backwards to me.

dire pecan
#

Yeah, I think so far I prefer Zigbee.

hallow lance
#

But having an extra Matter hub for those, so you can have less functionality for slightly more compatibility?

golden garnet
#

I remember intently debating with myself over zwave or zigbee

#

And I can’t quite remember why I went zwave

#

I think it was something to do with possible frequency range overlaps with Bluetooth

hallow lance
#

And Z-Wave has stricter standards.

mild grove
teal heath
#

z-wave has 2 different incompatible frequency standards too right?

hallow lance
#

Zigbee is the same everywhere frequencywise.

mild grove
#

That's fair but 868 is out of the cluttered 2.5ghz band so range is better

golden garnet
#

I think technically my Meshtastic stuff and the zwave are overlapped but I don’t have enough Meshtastic traffic to cause issues

#

I was super excited for Meshtastic and then found I don’t have any other nodes nearby

hallow lance
#

But you could use it as a remote for HA via MQTT. dr_evil

#

A node at home connected to MQTT and one mobile node.

mild grove
#

so everyone can see you open your door?

golden garnet
#

Meshtastic has encrypted channels

mild grove
golden garnet
#

Mhmmm

hallow lance
golden garnet
#

They have 2 different varieties now

#

Basic password style where anyone with the password can see

#

And the early stages of a more asymmetric key style I think

sweet trellis
#

I’ll be excited about Matter when/if I can merge Apple and eero thread networks for coverage. For now it’s mostly temp sensors and some lights on Zigbee and door/smoke/switches on zwave.

#

A couple spots have zigbee plugs instead of zwave because the network didn’t like transformers suddenly throwing out interference

rigid vessel
#

Hey everyone, sometimes my wife leaves the stove or oven on accidentally (memory/health issues). I’m looking for a solution that would allow me to get alerts or status using home assistant. I tried looking for an oven probe with 433mhz since I already have a receiver for that but didn't find much. I thought about a PI with customer vision, but I don't think I have a good enough spot to mount that. I'd have to be careful about alterations to the stove itself since we're renting

blazing hare
#

Electric or gas stove/oven?

rigid vessel
#

electric

teal heath
#

track its power usage

blazing hare
#

Can you put ct clamps on the mains for them? They should have individual or at least separated loops

#

It's non-invasive and can be taken off when you move out

teal heath
#

I have an automation that announces for simalar reasons
oven on
oven off
oven up to temp (power drop off)
and "oven is on" every 30 mins

rigid vessel
#

Sounds like what I need. She uses the stove top as well but I think if I establish a baseline power draw (if any) I could make alerts from that. Do either of you have device recommendations?

teal heath
#

i generally recomend shelly devices

#

"Shelly EM Gen3" it probably a decent option. just pleace be careful when wiring. mains is dangerous and can kill

blazing hare
#

Agreed, they're pretty high quality, WiFi so easy to integrate

#

CT clamps shouldn't require any mains wiring

rigid vessel
#

meh a little electricity never hurt anyone....

#

😄

blazing hare
#

You might also get away with smart sockets, if the oven and stove aren't directly wired

teal heath
#

yeah just the powering of the device

teal heath
rigid vessel
#

I've had bad luck with smart outlets in the past. I'm in the US. It's on it's own split breaker (across 2)

teal heath
#

a ct clamp over the live (hot) wire should work fine. wherever you can get at it. you will need to also wire the device itself into power though

#

if your not sure then it may be best to get an electricition in

rigid vessel
#

My FIL is a retired electrician, so I'll give him some cookies or something as payment and get him to help 🙂

rigid vessel
teal heath
#

i have 2 of those and they are fine. i just recomended the new "gen 3" one if they had it because its newer

polar tangle
#

Hi, I am new here and I am asking, is there something that can make this old heater / water boiler smart?

I want to have a motor or servo controlling the right big knob which can be set to 3 different modes. 0 off 1 only hot water 2 hot water and room heating via Thermostate.

In summer I have it set to 1 but only 30 min before I need hot water and after that I turn it back off, else my gas bill goes up like crazy. I want to automate that. I have a 3d printer on hand and know how to model stuff but idk anything about electronics. Is there a product that lets me achieve this or do I need to learn how an Arduino with a servo is controlled and connected with HA?

#

It's all analog tech, nothing digital

#

The only thing digital is the water temp display

teal heath
#

you could put a belt and a servo on it i guess. but you also potentially remove the knob and wire relays directly onto connections. although i guess that carries more risk in breaking it

#

without dismantling and reverse engineering would be hard to say how challenging that would be

iron ferry
#

I'd go the relay route

teal heath
iron ferry
#

can't tell if those are potentiometers (spelling??) or click type switches with a contact at each setting

teal heath
#

the switch in question being the 3 positions imaging its click switch switching between off / center tap / full tap transformer

polar tangle
#

So you mean wiring up the 3 switch states to some relays that act like the dial right?

iron ferry
#

I think the click ones would be easy to wire directly to GPIO pins and send signals, might need to check voltages etc. The potentiometer would be more difficult though

polar tangle
#

Hmmm I will look what I can do, but thanks for the new ideas on this. I thought there was some kind of switchbot but for spinning knobs or something like that

teal heath
teal heath
polar tangle
#

I will check tomorrow with what I am actually dealing with

oak moat
#

anyone recommend a good 3 or 4ch zigbee relay? I found the 4ch Chinese (rebranded may times) relay that comes in two variants (7-32v and 85-250v). gonna roll my own thermostat.

teal anchor
#

You need dry contacts I assume?

slow sphinx
#

I built an ESPHome door lock and would like to get the unlock button on an iOS device Lock Screen but the HA companion widgets are broken. Is there any way to get ESPHome HA devices into iOS home app without buying more apple hardware?

teal heath
#

could use apple native stuff perhaps?

#

pretty sure i have seen multiple implementations pop up. might be worth some research time if you want to go that way

meager quail
rough osprey
hallow lance
tepid vector
#

Aha, you're too quick. Was about to ping you 😂

hallow lance
#

Well... the file wasn't malicious. But it was weird.

scenic juniper
# brisk prism is anyone in the Valetudo Telegram Group? I am looking for a local Dreame breako...

if you don't want to join telegram, you can try on the subreddit - https://www.reddit.com/r/valetudorobotusers/wiki/index/dreamepcb/

brisk prism
scenic juniper
brisk prism
scenic juniper
jolly elk
#

As a normal 2AM activity I installed ESPhome on a WiZ Lighting WiZmote, which uses a ESP8266EX internally

It is now a literally useless device that just connects to Home Assistant and says it's a device, I have no idea what its internal GPIO usage is and therefore don't know wtf to do from here to make it a useful device

#

With the appropriate patience however, perhaps I can repurpose this into an actually useful ESPhome device that is regularly available at every hardware store & some department stores

Until then I have made the remote for my smart lights functionally useless, solely because in the middle of playing with it on its stock WiZ firmware I couldn't get any intelligible serial out & genuinely wondered if it was even possible to get intelligible serial output from it... and sure enough you can, if you install ESPhome on it and make it literally useless lmao

elfin geode
#

interesting LOL

jolly elk
#

Update: baby’s first reverse-engineering project

#

Need to figure out how I can make that LED shut off & how to use deep sleep mode, but it otherwise is now a somewhat usable ESPhome device even if the batteries will only last a day

swift ginkgo
#

Anybody know this error and how to fix?