#the-water-cooler
1 messages ยท Page 334 of 1
Other 131 members
?rank other
@vague ginkgo, you joined Other.
Hi guys, kinda off topic but I need help with this.
I would like to track the prices of certain websites (50-100 pages total) on every couple of hours and get a notifications if there is a change, any idea how can I do it?
Depends on the website, some websites have IFTTT support. I used it for BestBuy
@white fog @dry cairn @dull chasm @trail crag Did you guys see the WD 10TB on sale for $180? Reports say that they have a WD White (said to be essentially the same as WD Red, but may require mod for NAS use) inside of them. https://slickdeals.net/f/12219427-10tb-wd-easystore-external-usb-3-0-hard-drive-32gb-easystore-usb-flash-drive-179-99-free-shipping
@tidal bronze might be interested in that deal as well ^
?rank
Aliases: ?team
Description: Join/leave a rank
Cooldown: 2 seconds
Usage: ?rank [rank name]
Example: ?rank Mystic
?ranks
Other 132 members
?rank Other
@near flare, you joined Other.
yay
hey does anyone know how to stop alexa from discovering devices like wemo because im getting duplicates and i only want devices from hass
casting cameras to google home hub is pretty cool ๐ anyone else got anymore tips they have used the hub for?
@humble pond hey there, just setting up the tensorflow image_processing component. I am seeing this yaml 2018-11-10 12:43:17 WARNING (Thread-5) [homeassistant.components.image_processing.tensorflow] No OpenCV library found. TensorFlow will process image with PIL at reduced resolution. 2018-11-10 12:43:17 ERROR (MainThread) [homeassistant.components.image_processing] Error while setting up platform tensorflow Traceback (most recent call last): File "/srv/homeassistant/lib/python3.5/site-packages/homeassistant/helpers/entity_platform.py", line 128, in _async_setup_platform SLOW_SETUP_MAX_WAIT, loop=hass.loop) File "/usr/local/lib/python3.5/asyncio/tasks.py", line 400, in wait_for return fut.result() File "/usr/local/lib/python3.5/asyncio/futures.py", line 293, in result raise self._exception File "/usr/local/lib/python3.5/concurrent/futures/thread.py", line 55, in run result = self.fn(*self.args, **self.kwargs) File "/srv/homeassistant/lib/python3.5/site-packages/homeassistant/components/image_processing/tensorflow.py", line 127, in setup_platform detection_graph = tf.Graph() AttributeError: module 'tensorflow' has no attribute 'Graph'
the pip3 installation of tensorflow was successful, and I've followed pretty much all the steps documented.
@last plaza - what is your setup like? Is it a venv? If so, did you do the install with the venv active?
That error makes it look like TensorFlow didnโt get installed correctly. Can you try to install it again with pip?
I did several times actually ๐ both with pip3 and pip... inside venv as you can see in the pic above. It says, all the requirements are met.
Uninstall it and try pip3 install tensorflow==1.11.0
I havenโt tested with 1.12 yet. There may be some breaking changes. If that works, Iโll update the docs.
Installing collected packages: tensorboard, tensorflow
Found existing installation: tensorboard 1.12.0
Uninstalling tensorboard-1.12.0:
Successfully uninstalled tensorboard-1.12.0
Found existing installation: tensorflow 1.12.0
Uninstalling tensorflow-1.12.0:
Successfully uninstalled tensorflow-1.12.0
Successfully installed tensorboard-1.11.0 tensorflow-1.11.0
๐ค let me restart and see ๐
are there any known issues with 1.12.0?
It wasnโt released when I worked on the component. I think it must have just come out.
I wouldnโt put it past google to release a breaking change in a minor version though.
ah, I see... that problem went away when downgrading to 1.11.0 verison.
@humble pond Thank you so much!!! โฅ
Thanks. Iโll open a PR to update the documentation when I get the chance.
I am going to have to figure out a way to train it now ๐ Beautiful work by the way... I was working with arsaboo earlier to write some scripts for him, I wanted to wait until it becomes official!
@last plaza how are u using this component?
@odd mason I can share it - it follows pretty much like other image_processing components, but has different ways of training and options
I used opencv, machinebox/facebog and tagbox so far....
@humble pond I still see 2018-11-10 15:10:53 WARNING (Thread-4) [homeassistant.components.image_processing.tensorflow] No OpenCV library found. TensorFlow will process image with PIL at reduced resolution. is that okay?
Yeah. It just means that you donโt have the openCV python bindings installed.
I'd prefer it to process at the default resolution, I got plenty of power on the hardware side.. my HA is running on Dell Poweredge Server
I can scale up if needed ๐
Install this: https://pypi.org/project/opencv-python/
I thought I had opencv before... it must be my old setup... let me set it up.. thanks!
PR to update docs is here: https://github.com/home-assistant/home-assistant.io/pull/7458
@last plaza being thoughtless, posted a message that is more than 15 lines. It is now available at: https://paste.ubuntu.com/p/WSV7h28YJg/
My @velvet horizon doesn't respect me either ๐
@humble pond Thank you... I'll keep an eye and let people know if they have similar issue as mine.
Thanks!
@last plaza that is some sadist shit right there
@odd mason I've been called many things before, sadist is new! I'll add it my list ๐
@odd mason here is the screenshot
basically thetensorflow component parses the camera feed/image and creates a nice json with scores and boxes drawn around objects it found. That jinja code parses it and announces in my house using TTS
Good Lord
lol - thanks to @humble pond
Why are you looking for > 0.05 in the box? You could also filter down the area for the camera in the config so it doesn't even get returned if you wanted to ignore it.
I am looking for anything that is big in size - usually the cars in my driveway look bigger in the image than the cars on driveway... I haven't explored the config yet... this is a script I wrote for @serene mortar before... I was just trying to see if the json structure changed or not.
My next step is to explore config options @humble pond
ah, got it
by the way, I see these in the log ```
2018-11-10 15:21:46 WARNING (MainThread) [homeassistant.components.image_processing] Updating tensorflow image_processing took longer than the scheduled update interval 0:00:10
2018-11-10 15:27:56 WARNING (MainThread) [homeassistant.components.image_processing] Updating tensorflow image_processing took longer than the scheduled update interval 0:00:10
2018-11-10 15:29:12 WARNING (MainThread) [homeassistant.components.image_processing] Updating tensorflow image_processing took longer than the scheduled update interval 0:00:10
The area options in the config are pretty powerful. You can define a bounding area for each category so it ignores cars on the street, but still reports ones in your driveway, but alerts trucks/busses in the street.
I started to see them a lot... just warnings!
@humble pond that's fantastic! I'll go read more about it now...
The model gets loaded in memory on the first run, and takes a while to process. If you still see that on subsequent scans, you may need to pick a different model.
ah! I see. I picked the one that is recommended for a typical server... not the RPi one
I am using faster_rcnn_inception_v2_coco_2018_01_28
Run another manual scan and look at the log. Is it still showing based on the timestamp?
It only takes a little over 1 second to process on my NUCi5.
But the first run takes ~20 seconds
as it loads the model in memory.
Using the same model.
I see... my server has plenty of resources - is there a specific model you recommend?
Stick with the rcnn inception model unless you notice it start missing objects.
If it's not detecting things you want/need, pick a model with a higher mAP accuracy score from the zoo.
ok... I see!
But the more accurate models are slower to run.
So if you pick one that takes 10 seconds to process, your TTS will be pretty much useless.
yup - makes sense!
lol
I am going todisable my machinebox and other image_processing ones.. to free up some of the processing
does tensorflow process images all the time or only when something changes in the image?
default interval is every 10 seconds: https://www.home-assistant.io/components/image_processing.tensorflow/#optimising-resources
It's recommended to bump it up and call the scan service on motion if your cameras report that back to HA.
ok.. I see if it takes more than 10 seconds, it is going to play catch up game
@humble pond I'm sure you are keeping an eye on the issues/PRs. An easy way for you would be to run the command ~subscribe image_processing here in discord
go ahead and try it here
~subscribe image_processing
now, every time someone does a PR or enters an issue, you get a DM from hassbot -- something like this
that's weird... it is supposed to say that the command is successful...
~subscribe image_processing
The tag 'image_processing' is already in your subscription list.
~subscribe image_processing
The tag 'image_processing' is already in your subscription list.
@humble pond @last plaza TF is working well. Still have to work on the automations
Any one here come from openhab. I think ing for moving to HA?
@wise sorrel I did... best decision ever!
there are no equivalent panels in HA. There are components that have UI. as soon as you setup a component, UI elements will automatically show up on dashboard.
you can re-arrange the way you like them, group them, create multiple tabs/views...etc
not sure if I answered your question @wise sorrel
How easy was it to move over I use most MQTT
^^ Noob question: So MQTT just broad casts across the local wifi and relies on the device to look for specific commands?
MQTT is extremely easy to configure - specify the IP, port, you are all done. It has discovery mode, it can scan your network and automatically show you what you can configure, and automation platform is extremely powerful @wise sorrel
@vapid mirage no. It uses publish-subscribe pattern. Once you publish a message, it goes into a topic, and whoever subscribed to that topic, they get a copy of it
and how does one subscribe? it just listens for /xxx/yyyy ?
@vapid mirage the subscriber has to specify which topic they are interested in. there are some good videos on youtube on mqtt if you like to watch them
yea - i guess i have to... everything you said is how i pictured it happening. I've verified that the broker is broadcasting but the EPS doesn't seem to listen xD
although - i feel like i'm better off starting small and puzzling this together 1 by 1.
Remember, a few hours of trial and error can save you several minutes of watching videos about mqtt.
or reading the manual
well i started with youtube - but its a little old and HA is moving too fasttttt
@last plaza how do I check if HA has an binding for my Fronius inverter. An if not is there away to make a bridge or something similar in home assistant
what kind of fornicator?
@wise sorrel you can check in the components section of HA. If it is not supported, and there is some api available, it is usually very easy to integrate
looks like it does have api https://www.fronius.com/en/photovoltaics/products/all-products/system-monitoring/open-interfaces/fronius-solar-api-json- at least for the solar
@dry cairn are you tat to me?
@last plaza no there no https://www.home-assistant.io/components/#search/Fronius
@wise sorrel I have not heard of that before, and I doubt we have an existing integration with that... building a custom component is fairly straightforward
you may want to follow this here https://developers.home-assistant.io/
I think I back up my openhab an try HA ๐ right now thanks @last plaza . Will let you know how it goes.
@wise sorrel absolutely! good luck!
P.s were about live @last plaza i in Australia
@wise sorrel I live in the USA. I know a gentleman who lives in Australia, a wonderful guy, and a Home Assistant geek... if you ever want to talk about supported devices in Australia, you can reach out to him
he is, none other than @edgy iris
he does the podcasts for Home Assistant https://hasspodcast.io/
you will find him mostly in the #creator-connection channel
hey, any mods around for a general chitchat?
@warm swift need something?
maybe
Im trying to figure out where HA
sits
and why
I have smartthings
which is OK...
ish
and eventghost for windows
and tasker for android
its like a mass mix of all things HA
I kinda have them working togeth
er
but its a mess
What does HA do differnet?
thanks @last plaza got him playing now.
@warm swift that's a loaded question, you could have condensed it into one sentence. Best would be to go to https://www.home-assistant.io/ web site and watch some of the videos on YouTube.
lets simplify
Tough question, but why bother with HA vs webcore?
perhaps not such a simple question....
@last plaza HAVE YOU WATCHED ANY OF MK smart house video
@quiet cobalt I have not... links?
@last plaza https://www.mksmarthouse.com/
yes - found them
he is about to move to HA he has been with openhab for a long time.
is Hass.io the best way to go?
if you re technically savvy, you should go with custom install in virtual environment. if not, hassio would be okay
one is consumer friendly, another is developer friendly
developer friendly is eazyer then openhab or the same
if you are a developer, yes!
i not a developer just an hobby
is it just me or are there no decent true noob friendly home automation sytems?
Ifttt?
loz
i'm not the noob
I have routines that my mum would spend a year figuring out
trying to figure out how we get the average joe invloved
that why shes got you
haha,
true
I'm on an mini insight mission
while drunk...
the question is
how do we get home automation to the masses
and who can pull it off
smartthings f'd it up bu selling out to samsung
most the big names are focused on selling their own overpriced shit
where does HA fix and openHAB sit? and will they sell out
quick call in the uber admin ๐
@warm swift well they are both open source so there is no selling out
was that not true of smartthings?
No idea. Never touched that
openhab will not there there been around for an long time 2010 I think, HA I don't know much about yet
HA I see it started in 2017
I think?
Automation to the masses requires money as an incentive and open source isnโt that.
nah
No. Hass is older that 2017
sorry 2007
yeah they can tell you all about that ask for the ubiquiti story
I think and open hab is 2000
is that related to ST?
lolz
@last plaza you still here
looks like yet another fake device mfr from some google searching
Ubiquity?
You Google fu must be poor.
you have't figure that out by now @storm summit
not only here
haha
well I dont have time to view past the first page of google
sorry to those that have time to waste
well so far you have had nothing but mental diarrhea
๐ฅ
now move along
@warm swift genuine questions are okay - I'd ask you to go and read about HA
we get enough provocative stuff here...
i wonder why simon phoenix's ray gun sounds like a 80's home phone
Iv'e start to. but I'm wondering what i'm missing 5 hours in
@last plaza not a good start ๐ฆ
@quiet cobalt I do not use hassio, and by no means an expert!
Not wrong on ubiwuity... Very interesting
what you use @last plaza I Looked at an youtube video on an lovelace its looks really good
Still no idea where HA comes in ๐
@quiet cobalt I use custom install - in a python virtual environment. I am not a lovelace buff, and my home automaton is mostly automations and voice activated and TTS
ignore the slatty.... I might have to do something ,,,
Zombu2.... please can you point me to something around SM and the ubiquity system?
Need to see more
you have sent me on a path of Enlightenment
any ideas what AsusWRT tracks my phone fine but thinks my SO is still here even when shes been gone for ~30hrs?
Anyone here jumped on the $1 amazon Echo Dot deal yet?
link
Go to this link, https://www.amazon.com/b?&ie=UTF8&node=18316548011, click the button and enter the code DOT1.
Click on the link for step 2 and signup for the Amazon Trial.
Wait for an email labeled "Here's your promotional credit from your recent Amazon order" (You may actually be able to skip this step and just order the item and see if promo is there)
Go on amazon and order your echo dot 3 USE THIS LINK https://amzn.to/2JT0GE3 and the promotion automatically applies to your order. Remember to select free shipping.
When your shipping confirmation is confirmed you can cancel your trial, or to be safe wait until you receive your echo dot before you cancel.
Online shopping for Amazon Music Unlimited | Dot for $1 from a great selection at Digital Music Store.
Got none? none left?
they prolly had 2 ๐
just like that chinese restaurant that was giving away the new COD
I saw "This promotion is available only to customers located and with a billing address in the United States." and ignored the rest of it lol.
i guess they ran out of their 3 dots lol
can you guys tell me how big is the configuration.yaml file at the start. I think I save some thing over it?
Just delete/rename the config file and reinstall it will create a new one and you will be able to compare the two. Also that question should be asked in #330944238910963714 not the lounge. @quiet cobalt
all good just starting from the start. sorry will post there next
did post on hassio was that the right place to post??
If you are using Hass.io then yes that would be the best place. Read the descriptions along the top and post where things sound like they should be. Lounge is - For chat around things that aren't Home Assistant related, like whether Docker or Kubernetes, or Celcius or Kelvin, or anything. NO POLITICS or RELIGION and BE CIVIL to one another or get BANNED permanently.
oh I was just talking on here before moving from openhab to HA
hope I have not upset you sorry
Lol not upset mate. Just informing you of the right and wrong places for things.
If it is related to hass.io then ask there. This is a channel for talking about things like deals on amazon or who has the biggest epenis etc.
@somber steppe Which is your prefered DFH IPA?
Have you ever had the opportunity to try 120?
yes
I've never had Fernet. Whiskey?
I'm not a Whiskey man. Too weak for it.
Haha, fair enough.
I don't know why....Is not the taste. Is the smell that keeps me away from it.
It does have a very strong smell mostly.
I have always preferred beer > vodka > whiskey
I love whiskey I use to make my own rum not bad stuff
hey @peak cloud just see you on youtube watch how to use lovelace I was hoping to get that runnny at the end
one of @slim vortex youtube video
You saw me on YouTube? Oh jeeeeeeeze >_>
Just checked out the video, lol. I guess where he mentions the Lovelace Migration add-on? ๐
I am from Texas.
@quiet cobalt I haven't really run HA in over a year. >_<
But, when I did, my config was: https://github.com/dale3h/homeassistant-config
@peak cloud have you not run HA
I mostly run it now for community support/testing reasons.
I have it running inside my home as of the past two months, but it is very very very basic.
@peak cloud you have any google home or any home automation like lights and stuff
I have Alexa is every room, including the bathrooms and laundry room. Hehe
I automate two lights in one automation -- front door opens between 6pm and 9pm, kitchen and dining room lights come on.
nice, off to have some dinner talk to ya later
Have a good evening, take care!
@peak cloud what is docker. I have heard that before but in open media vault.
@peak cloud I have worked that one out all good, still have look into open media vault but understand docker now
https://en.wikipedia.org/wiki/Docker_(software) @quiet cobalt
How's the IOT living
What vacuum you thinking of getting
getting s55 xiaomai
๐ mnine shows tomorrow
nah i didn t want black
racist
sheesh
๐คฃ
pile it on while you at it
too tired or i would...need nap
man man man you gettin old
been there
did you see how quickly that room cleared out ๐
https://marketplace.visualstudio.com/items?itemName=openhab.openhab
Anyone working on something similar for Home Assistant?
That'd be pretty cool
yeah ๐
Good day - Looking into building a hassio setup and buying the hue bridge to get started, I have read enough to know they work together but what I am unsure about is will the hue work if it never has internet ever?
I could have asked in support but wasnt able to deduce if this was really a hassio question or more general. Apologies.
More a Hue question ๐
And more general would have been in #330944238910963714 - please do take the time to read the channel topics
@clever mortar true, and I did recon hue setup some but wasnt sure if it went differnelt when coupled with hassio.
~lmgtfy does the hue bridge need internet connectivity
Here, try this => http://lmgtfy.com/?q=does+the+hue+bridge+need+internet+connectivity
Defenitly not a hassio question #330944238910963714 would probably be best.
AFAIK HA communicates with Hue locally, but I'm not sure you need internet to set up the bridge initially ๐คท
First hit gives the answer you're looking for ๐
ok will do I assume homeassistant was for that line and hassop was for that variant. Sorry.
@light trout I actually did that google search and read setting up hue did want internet - where I was unsure was how much hassio interfaces with hue, to the point that it would work without the internet
The bridge works as a standalone device and does not require the internet to work. ... Although the internet is not required, the bridge must be connected to a wired router, this is because the hue bridge itself is not wireless, and so uses your router it can connect to your network be it in the internet or not - from the first Google hit
How about a rename form #330990055533576204 to "#330990055533576204 addons & Hassos" ๐
Yeah, well
Anyways thanks I guess I will test and see if I can get hassio to talk to a hue bridge that can not see the internet and hope for the best
glad amazon has good return policy ๐ any other "hue" like products that are not dependant on the internet for set up?
If you're after lights, see https://www.home-assistant.io/components/#light
https://www.home-assistant.io/blog/2016/02/12/classifying-the-internet-of-things tells you what the IoT classes you're after are - basically Local
any one nowhow to get rid of When posting logs or configuration snippets please use code blocks and syntax highlighting. For quick highlighting of code, YAML, etc, use this button: on the fourm
You can't
It's a great big banner because too many people can't read
You know, like the #rules that people get pushed into when they join this server - and then promptly forget about
mute individual channels, then hide muted.
Thanks @light trout I use to use https://marketplace.visualstudio.com/items?itemName=openhab.openhab
when I used openhab its good hope some makes one for HA too
is anyone buying led strips off of aliexpress today
why that @near flare
i need an oilchange
video's are cool
oh look a bird
@clever mortar thanks for that blog link!
Tinkerer is away for 1h 29m 48s with a message :point_right: I owe, I owe, it's off to work I go!
have any one use the before I didn't even now about themhttps://nl.aliexpress.com/store/product/New-Arrivals-Sonoff-Sensor-Si7021-Temperature-Humidity-Sensor-Probe-High-Accuracy-Monitor-Module-for-Sonoff-TH10/3063001_32822850571.html?spm=a2g0z.12010612.8148356.3.6f572e41MCwaZQ
by reading the manual
@near flare I can help you but not in this room. Did you read the rules
@quiet cobalt I thought this channel was for general questions
or not directly related to HA
but it looks like you need support
@near flare are you wanting to buy the leds all of them work with HA there lots of wqys you can do it
@near flare if your not looking how to setup up your in the right chat sorry
thats fine
? what u mean
Just tell me what you want to do what we want to do but you seem like you're lost
I would like to know if those led's will work with that controller
Yes they will. But it's not easy
why
it should work with this component: https://www.home-assistant.io/components/light.flux_led/
Ok why are you asking then
what version of the controller do i need 5 pin RGBW or 4 pin RGB it looks like they are 4 pin but they do white so im confused
It seems to me you're running not walking need to walk and learn
That's the question in DIY
Not if you want to buy them
i don't think I can help sorry bud
cya
thanks anyway
all good I think you need to slow down and work out what you trying to do then ask
as I was so llost of what you were asking
@near flare 1st look at this guy https://youtu.be/6Y6jUM1OaYM he is @slim vortex his on here too
DIY Customizable LED Holiday Lights, controlled with Home Assistant for $250. Product Links- LEDs: http://amzn.to/2j4cab4 Power Supply: http://amzn.to/2AUqpe...
ok thanks
Hi All, Looking for recommendation to buy motion activated security outdoor camera wifi only.
arlo nest wyze reolink
nest works well with HA ?
yup
Thanks for the advise ๐
np
@near flare also look at this guy 3 parts great detail https://www.youtube.com/watch?v=_UiqrnRiqpk
Ebay WS2812B IP65 30LED/m: https://goo.gl/aFAkR2 60A 5V PSU: https://amzn.to/2DS7P8c Aluminum Channels: https://amzn.to/2xTTbrG 3 Core Wire: https://amzn.to/...
@storm summit yes 10-15 years i think it was
That is still much longer than the traditional "smoke detectors" that should have been replaced every few years.
Just add group and views and icons and getting there I am
@peak falcon ask in #330990055533576204 this is the lounge
How is it that riverdale one of the most popular shows on tv is about a dungeons and dragons knock off and L.A.R.P.ing
Thx!
I know right @quartz ether me an the miss watching Riverdale and with dungeons and dragons funny there got cults. What is L.A.R.P.inf
๐
Larp-ing. Live action role play.
How ya goiy @hearty depot
well well - As most of the time automating things ๐
fighting service: service: input_boolean.turn_on for the last 5 minutes - Tzz
@storm summit in real world, CO2 sensors usually work 5 years after production, thereโs an expiration date on the sensor (usually). To be on the safe side, if thereโs no expiration date, use it for 4y max
is there a presence sensor that exists that could differentiate movement and sleeping?
like something that would shut the lights/tv off in the bedroom if one fell asleep
i guess it's not a terribly big deal
I've been thinking about the same thing. Maybe put a motion sensor in a position where it won't detect you while you are lying in bed, but will see you if you sit up
Of course it's very hard to tell whether you are lying very still in bed watching tv, or you are sleeping. You'd need face detection for that.
yeah, probably unrealistic
just trying to find more ways to make a home smart without being overly clunky or annoying
most of the automated things are kinda pointless
at least in my apartment setting
can't use things like automatic locks
idk, i want to do more automation but can't figure out what to do
https://www.home-assistant.io/cookbook/ is worth a read
But mostly, look at the things you do manually regularly, or are annoying you, and look to automate those
Look too through all the various Githubs (linked from the cookbook and elsewhere) for ideas
Use them for getting ideas, that's one of the things I've done
Most of the better ones include at least partial explanations
sometimes the automation seems like more work than it's really worth
Then maybe automation isn't for you ๐
not what i meant
So you burn an hour or two working out how to make something work, after that it happens without input, so you're free to do other things
Lights come on when it gets dark and you're home, then go off when you go to bed, for example
my lifx lights already do that though
Doesn't take long for the time required to do that to feel worth it
So look through the cookbook and others for ideas
ยฏ_(ใ)_/ยฏ
i just peruse off and on until I find something interesting enough to pursue
I was up for 2 days with one hour sleep moving from openhab to home assistant.
. Oh feel better had a better sleep ๐
@rich kettle you can make a bed sensor that can tell if someone is or isn't in bed
LoL, funny things I didn't prepare myself that I have to learn a whole new code. But I can say it is a little bit easier than when I first started with openhab.
But I've had some sleep now and I thought about all the stupid things I was doing and it's better to have some sleep.

Hi all, Need recommendation for PIR motion sensor which is compatible with HA ?
What is everyone doing in the IOT of Things to do
As excited as I am about the pokemon movie I am equally disappointed about the fact they didnt keep it to the original 150....
Didn't they? It's been a while (18 years or so) since I saw it, but was Togepi already introduced, or what?
Or wait. Mew was in the movie. That'd be #151.
Looking at the trailer for it. Pokemon in it look like they are from newer generations
I suppose you're probably not talking about Mewtwo strikes back from 2000?
@hearty depot how ya going.
Heyha - Getting mad with nekmos Amazon-Dash and the Homeassistant API atm xD
Unforfilling b ๐
LoL what you buying at Amazon?
nothing - Just using the buttons
Ok is that for you intercom?
No - I have to wait a little with the intercom - I ll use a octocupler to seperate the power lines from the esp and the intercom
I use the dash buttons for all kind of stuff
starting music timers lights
Opening the relais on the intercom
Got in all of my jackets a dash button to open the door
I try to do my irrigation system today next thing I found out it wasn't working so I had to pull it back out
Did you know yesterday and the day before I had 1 hour sleep lol just setting up HA didn't think it was going to be that hard I should have done research before I came over. I could have prepared myself more to learn the code better before I moved
I got 10 hours for 12 hours sleep today so I'm feeling better
@quiet cobalt Sorry to interrupt, but what irrigation system are you using? O
Thats ok it's is MK Smart House @midnight adder
@next eagle what you thinking of making?
@quiet cobalt Just trying to learn of new things I can possily incorporate, that's all. Had a house built just over a year ago so ๐
Mk smart house I started with but he used openhab but as HA has got better and better he about to do his 1st video on HA on the 15th.
Have a look on this website his only 18 but he explains really good. He will be bringing out a lot more videos on home assistant
Oh sweet, I'just had a quick look on his website, pretty cool stuff!
I have all my lights pretty much automated now, I'd like to get smart blinds, garage door, water system at some stage.
Nice I been watching him for about a year now he had live stream once a month too
Tell him Aaron from Australia told you about him he knows me.
Serious? Haha, I shall. I'm from Australia also! ๐
Are ya LoL Brisbane
Adelaide hills here ๐
Nicely, how long you been using HA
Just over a year, purchased the Pi3 and accessories as soon as I moved into my home ๐
I have Xiaomi door/window/motion sensors, and LifX lights.
Also a smart tv I can control, and Magic LED Strips.
Nice I just moved to HA 3 days ago lol
did have everything working on openhab before this but given HA the best go as I can
Haha nice, I went in blind, first time using a Pi etc.. I went with the Hassio self installer.. made it pretty easy.
You think we could talk more on the phone more later maybe you can help me better understand HA better.
Tomorrow
I pm my no.
first time thats ever happened.. watching tv and google assistant heard and turned 3 lights ogff :/
I not working this week
Oh, you want to talk on the phone? ๐ฎ How old are you mate?
26
You know discord has Voice capabilities?
Really nice @light trout
You got that @next eagle
That's a better way.
@light trout how you going
I think he know, and that's why he reacted on you wanted to use a phone ๐
Hey sorry, yeah. I'd prefer sticking with Discord to be honest, don't really know you. Sorry :3
LoL all good lol
I'm more than happy to help and discuss things and all! ๐
God.. this feels like a break up ๐
All cool cool cool
๐
I use to be in a forum for distilling we all got to know each other an it the hobby more fun lol. Distilling is legal size funny we talked to each other. I still talk to them now
liquor brings people together
@proven spruce yes it does lol just sold my still but still got the friends to get homemade rum what is way better than any rum
The friends are good we still talk about stuff some of them are they are in mektronics as well that's how I got into it
Electronics
@next eagle any how we should chat on here talking better for me then write lol. P.s check out MK his one on the good guys ๐
@quiet cobalt Absolutely! ๐ will definitely check him out more later
๐
https://www.youtube.com/user/Frenck Also do live streams
Nice
@light trout I had no idea, good to know!
@light trout were you from don't tell me Australia
He usually do Tue & Fri every week, but I'm not sure about this week
@quiet cobalt Norway
Nice I was in London for 2 year's on a working holiday in 2010
Didn't get to Norway
Sweden
EU too
Norway isn't in the EU, but yes.
Really ๐ thought as it so close
it is in Europe tho
Europe but not EU ๐
for the rest of the world its the same thing ๐
๐ ๐ ๐
specially muricans
yeah but its mostly desert and same country
We do have an "agreement" with EU, so we have some of the same rules as EU
you're just copying switzerland
@proven spruce yep that's why I on the tropical side
Australia do have Tax on Tax on tax but
It's ok place ...
@light trout you free you help me out at #330990055533576204 I think I broken MQTT?
nope, but someone will be along in that channel in a couple of hours
ok then I can wait
How funny it as after connecting Google cast I can type in whatever I want for Google to speak in text. I just sent to my wife's room f*** you
Hi All!
@proper wharf hi
As a new comer, is it best to install one thing at a time
Or throw everything I want in the config and hope
defenitly the first one :)
This is a good read on that topic https://blog.ceard.tech/2017/10/putting-cart-before-horse.html
Patience isn't a virtue I posses, I suppose that I should prioritise and learn
@light trout have you ever use openhab?
Why would I? ๐
LoL
I know there were issues with the new mosquito install on HASS. I havenโt updated yet. Was there anything in the update critical? Or can I wait on the update?
Are Try everything in fond the best all the time. LoL that how I find HA
@light trout is there some were to share our systems so we can show of what we have built.
Really you think there should be a place in the fourm.
Github is where everyone shows off their setups.

@next eagle you got your setup there?
@quiet cobalt Not yet.. ๐ my code is not tidy at all.. haha!
LoL how about you @light trout
I currently do not use Home Assistant
What you use?
the old way
This just popped up in my Google Home app, Fan support looks like it's here. But I can't get control of any of them. Anyone know how? https://imgur.com/a/f0TrSJT
Turning on / off still works via Google Asssistant, but no High/Medium/Low setting, and from the Home app it doesn't do anything but let me open the device settings.
Googling shows me a "Fan" device type page in the actions on google dev documentation last updated oct 2nd, but nothing else. I can't even find anything about the Google Assistant component updating to support this <.<
Any out there having a beer
@vague ginkgo I am seeing the same thing. Can turn it on but not adjust the speed. Not sure if that is the expected state of this or not right now
@vague ginkgo Based on the domain listing for Google Assistant on the Home Assistant website it just lists on/off so I don't think speed or mode is supported yet. https://www.home-assistant.io/components/google_assistant/
The Port Smash exploits Hyperthreading and timings to work out what other programs are doing. Dr Steve Bagley looks at how. Spectre & Meltdown: https://youtu...
Is that not a meme?
In this video we use SIMtrace to intercept the communication between the phone and SIM card to understand how that works. This is part 1 in a series introduc...
@quiet cobalt I think the bot serves some people's configs if you ask nicely
~tinkerer
You can find his GitHub at https://github.com/DubhAd/Home-AssistantConfig/ and his blog at https://ceard.tech/
Very useful. I just learned from the link now that you can nest secondary conditions in the Actions section of an automation after services are called
I just wip my IP SD card of HA moving back to openhab till I know more about HA
back thanks
~tinkerer
You can find his GitHub at https://github.com/DubhAd/Home-AssistantConfig/ and his blog at https://ceard.tech/
For best of the best home automations, visit my repo at https://github.com/arsaboo/homeassistant-config
You can find skalavala's github repo at https://www.github.com/skalavala and his blog at https://www.awesome-automations.com/blog/
has ayone successfully flashed from esphomeyaml to tasmota? I can't get it to flash regardless of method used
nope
dope
i wiped mine
you do you, my guy
I want to put my setup on a better host, but I dont want to migrate fk
what do you run on ?
@rose comet @dry cairn runs on a hope and a prayer
nice, good performance?
huh?
nah i image my ssd daily
nevermind..
hey guys, any support for savant?
check the HA website
i did the search on the site, no components exist
but there is support for an 8x8 hdmi matrix
im using justaddpower and cisco switches for video over cat/fiber
so whats savant and explain what the other stuff does
savant is a home automation thing, mostly amaster controller some hdmi matrices etc, it integrates security cams, gate and garage control (serial), ip cameras, etc
it kinda looks like hass.io can replace a lot of the savant stuff
right now im using an integrator to do the savant stuff
yeah if its not in supported devices you prolly SOL unless you wanna make your own component
ha can definately do some garage door control
ip cams it can pull a mjpeg
the harder part is controlling the swtiches for the video distrobution
depends on what protocol
Recommended Layer 2 and layer 3 Gigabit managed switches for use with Just Add Power HDMI over IP matrixes by Cisco and Luxul.
Luxul
jumps up and down @dry cairn - https://community.home-assistant.io/t/custom-component-just-add-power-hd-over-ip/57991
Iโve created a component to control a Just Add Power 2G or 3G video matrix. Allows you to define your transmitters and receivers, then use the media player component to change sources. More detailed info on how to configure can be found in the readme in GitHub.
I have a running HA ๐
Got all my stuff done that I need I like to say thank you for taking your time with helping me guys on here ๐
Morning everyone ๐
I'm trying to get my sonos devices into google home via de media_player domain. Somehow they are not pickedup by google home. Is this normale behavoir or did i forget something?
The switch and light domains work perfect
@midnight adder Please read the channel topics so you know where to post (hint, #330944238910963714 )
ow crap, thought i was posting in home assistant
awesome... the air coming out of my furnace is 110 degrees at the unit. down to 82 degrees by the time it reaches the vent in my living room.
the things you learn when you put temperature sensors everywhere
Need better insulation then?
my house is built on a concrete slab (no crawlspace) and the ductwork is in the slab, so no way to insulate it
Ah, traditional "we don't need to worry about energy" thinking in that design
pretty much
i'm pretty sure it gets water in it too. if we get a lot of rain outside, anytime the furnace kicks on the humidity level in the house skyrockets
"Awesome" ๐คฆ
wonder how much it would cost to have a company come in and re-run the duct work through the attic
then i don't have to worry about the toddler putting toys down the vents ๐
However much it costs, if you stay there long enough the energy savings should pay it off at some point
we just replaced the furnace last year. heat exchanger in the old one cracked and started blowing flames out the front of it
that was fun to find.. glad it was out in the (attached) garage and nothing was sitting in front of it
so it looks like we may be 1 step closer to "hey google make me beer" ๐ https://www.theverge.com/circuitbreaker/2018/11/13/18088118/keurig-drinkworks-cocktail-pods-k-cup-beer-bar
dude have you actually calculated what each drink cost you
its cheaper to get one in a bar
well you can always bulk buy on Costco lol
thats right hHAHAHA
I am more curious about how they do it in the pods....like is it the desolvable kind or are they brewing stuff lol
prolly liquid just add water and co2
I wonder if those pods would fit in my dolce gusto...
@wintry crow i would imagine we woudl have to use those custom pods and gut the other brands to enjoy it ๐
just take the lid of the pod and use it like a shot glass
hey hey. What motion sensors are people recommending these days? I have a hue bridge but those senors look way too pricey... I may go with some PIR/ESP8266s but i wouldn't mind a cheap-ish* battery powered version either
xiaomi ...all the way
estimated battery life?
6 months so far and no problems
i use aliexpress myself but they maybe ok too
what are you using to read the info? @dull chasm
my xiaomi temp/humidity sensors have been great for the price
I use them with an husbzb-1 zwave/zigbee stick and the zha component
speaking of, i wonder if there will be any good deals on them for black friday
@amber bramble yea, im hoping there are some on sale!
i got motion ...temp and door window...all have been great..... one has failed maybe battery can re-pair to gateway and then it drops off again but out of 14 not too bad
i wish the motion detector didnt have that 2 minute delay but its not the end of the world just can cause issues during the right time
anyone here using the xiaomi humidifier?
@shy comet is that due to it being battery powered?
@vapid mirage every motion detector is different honestly, for most people the delay wont matter much because you can account for it and its not a long amount of time
in this case probably to save battery life
it reports on quickly just doesn't go to off right away
mine came with it i think
basically what he is saying you cant create a event from motion sensor within the first two minutes it turn off becasue it delays the event
personally never been a problem for me
@dull chasm i noticed this in my testing....it turns on then stays there for 2 minutes and checks again...if it does not see motion it will switch to off and sleep for almost a minute before detecting on again
i basically write my automations to wait 3 minutes to turn off lights
i havent testing to that ganular of a level because.... ๐ค .... i could really care less ๐คฃ
oh the minute delay between turning off and being able to re-trigger to on would be annoying
hahaha i noticed it because i was in the room moving around and it went dark and im like what the hell
never a problem for me but all my lights are on at least 5 mintes before turning of
yup there you go lol
i figured why not leave them on longer if you really need to go back in the room again that quickly
exactly.....
i think i got mine for liek $7 which is much cheaper than DIY lol
๐
@shy comet true, but i have esp8266s and PIRs sitting around.
plus i dont have a usb stick, yet.
those sticks seem pretty pricey
has any one ever come across a small nice-looking battery powered button that speaks mqtt or http ?
a button ๐
no, i just want the simplest remote control , for house guests.
i'm running a prototype on esp32, but it's ugly.
i read that the dash btn has non replacable battery ?
that actually looks worse than my ghetto esp32-on-breadboard.
@clever mortar love your Seasons GitHub page over at #330990055533576204 ๐
It came about because I wanted the Christmas lights to be automated
Then I thought that I should just do it right to cover any seasonal event I'm likely to want to cover
I really should add birthdays to it though ๐
Why do you turn your switches off twice? Fail safe incase they dont work being zwave?
A couple of them would sulk
There's better ways of doing it, but I haven't touched those in a long time now
@clever mortar I haven't looked right through the code but how about Easter what changes every year.
Is there like a yearly search for when Easter is on
Yeah, I need to do that bit still - since it moves
I'm no pro but sure somehow you can hook it up to Google calendar maybe but I'm no pro
Should be possible, but I wanted to catch the Saturday between Good Friday and Easter Sunday, which is what caused me to skip it back then
๐ค
It should be a simple case of not changing it on Saturdays if it's already Easter
Maybe a just a turn on Good Friday turn off Easter Monday
Probably something like that
The thing to catch though is restart
Which resets some things, but not everything, and adds just enough complication to tracking state ๐
I mean the progress of making one for a watering system
I started with one automation, and have been expanding ever since
Nice what does your neighbours think
The lights are outside right
Oh sorry it's for all think. ๐ do you have any outside lights to change the seasons is well
No outside lights by season
Hey, I'm new to this project on Discord, so I thought I'd say hi. This is what I'm mainly using HA for. Trying to contribute back support for aquarium specific hardware as well
why is there no recipe on ittt : if easter do ...
@thick coral ARE THERE SALT WAITER
@Tombstone yeah, saltwater. Got some clownfish and an anemone in there as well
looking good, really like saltwater but could not look after them
@quiet cobalt that's what HA is for ;-)
?rank other
@tired veldt, you left Other.
@mighty summit You could detect holidays in general with the workday sensor; if you would set every weekday to be a working day, then the state should be 'off' only for holidays?
https://www.home-assistant.io/components/binary_sensor.workday/
@haughty tundra thx, I was only jokingly mentioning ifttt because of @clever mortar 's but I wanted to catch the Saturday between Good Friday and Easter Sunday , mentioned earlier
๐
And of course, the workday sensor doesn't catch everything, only (major) public holidays for your region, and it's just "on/off", doesn't tell you why
with an esp inside
with a mercury switch.
when i turn the egg upside down, the lights go out.
oh, and a regargable battery.
rechargable *** dmmit
who's with me?
look at aqara magic cube - it is not a stylish egg, but does many more thangs
Hey there, anybode with the Xiaomi Vaccum Cleaner 1. Gen here?
Or to me more precise, anybody wo got the access token for any Gen of Xiaomi Vacuum Cleaner? ๐
you know why they call it a access token?
Uhm I guess so? I'm asking because the documentation is a bit confusing
The first solution is to use the Miio command line tool. Although the box above says it's only work with the Gateways, and not the vacuum cleaner, which is confusing because the page is only for the vacuum cleaner. The instruction says to use "miio discover" while being on the same network, which is confusing because the official miijo instructions says to reset the device, connect to the device opened by the xiaomi device ant run "miio discover" in this network
As none of the ways described worked, I'm trying the SQLite way now
@hearty depot how it going
Fine fine - Just got the paid version of fully browser (android app) And playing with the rest commands - atm I look for a way to disable the sleep function on Android
What app is that for?
Fully browers ???
@hearty depothttps://www.ozerov.de/fully-kiosk-browser/
Android kiosk browser lockdown for interactive kiosk systems, digital signages and other unattended tablets with fullscreen and kiosk mode
Well I better get some sleep
@dry cairn What ways did you use?
like my tablet does already ๐
sleep tight
Now a app installed called wake lock - lets see
~rtfm
RTFM is a well known phrase, used when someone hasn't taken time to read the documentation. Please take time to Read The $%#@ Manual - author unknown.
Power Settings -> Set CPU Wakelock geniuzz
@marsh basin looks like fun ๐
For those who use motion sensors, what usb/bridge do you recommend?
Hi all! I just found out about HA today from reddit. I work in IT but have never done any automation. I had a quick question because it all seems too good to be true. I'm not asking how to do these things, just if they are realistic use cases --
Assuming that I'm buying brands that are listed in the HA components, would these ideas be possible? : -Based on "dark sky" weather have my MyQ garagedoor close and my ikea lights turn on.
-Use a Wemo dimmer to turn down my lights and send a text my wife?
-Have my IP camera pick up motion and turn on lights for an hour and trigger a chromecast to start a playlist.
-Is there really nothing I need to start the hub besides the raspberry pi? I won't need any other usb dongles to send a specific signal type?
Sorry if this is too rudimentary. I did browse the forums but didn't see something this specific.
I'm not sure about the wemo dimmer, but the rest sure ๐ , you don't even need a RPi, Home Assistant can run on anything* that runs Python
okay awesome, thank you! I'm glad I found out about this right before Black Friday. This is pretty amazing stuff. I've never looking into smart home stuff because I don't love the idea of being tied to google or amazon or phillips, but this is perfect. I really appreciate it.
Good luck ๐
@wind blaze i use wemo ๐
netatmo is decent
Linux support
@wind blaze HA has support for wemo dimmers. I have several in my setup
Aire is a self-flying robot for the home. It pairs with Amazon's Alexa to do a myriad of things. Read more: http://www.businessinsider.com/sai FACEBOOK: http...
how does the XY color format work?
Like black magic
i was looking at this and wanted to find out the colors https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/light/light_profiles.csv
Try searching for x y color picker
@last plaza thx for the Aqara cube hint, i'm going to add 'mqtt or http' to my specs :-p
I need to look in to fixing the netatmo componet, it looks for camreas even if you dont have one and some API's changed
i'm so fed up with soldering wires to led strips.... ๐
@mighty summit i've found that JST connectors are near perfect spacing and are easy to stress relieve as those pads rip off easily
(or melt off.... )
2nd gen echo dots are $15 over at woot.com
@vapid mirage thx, do you have a pic ? i fail to imagine ๐ฆ
so you solder the 4 pins to the strip ?
this is from when i was testing the led
yep. good 'ol hot glue with shrink tube for stress
that then makes disconnecting & reconnecting easier...
๐
not bad... still soldering tho :p
true, but i have had really bad luck with those solder pads failing over time
i guess it may not be too bad if you stress relieve the wires*
@mighty summit whare are the LEDs for?
xmas fun
Does anyone know if the tensor flow component supports the GPU package
read the model selection section of tensorflow. it has all the information https://www.home-assistant.io/components/image_processing.tensorflow/#model-selection
@pure vine - yes, if you properly setup tensorflow with the gpu enabled and all the CUDA drivers installed, the component will work.
@pallid nest what unifi component connection issue?
Heyo! Iโve got Home Assistant installed and rolled my own baseboard heater thermostat with esp8266 + Si7020 and solid state relay. Home Assistant is awesome!
Hey Everyone, I'm just looking through the big wide web for BlackFriday delas to stick on the HASSCASTS blog and I've come across Smart Assistant from Xiaomi, has anybody any experience with this https://hasscasts.com/link_xiaomi-ai ? If so, What's it like and can it integrate with HA?
Only US$25.99, buy best Xiaomi AI Portable Version Wireless Bluetooth Speaker Smart Voice Control Handsfree Bass Speaker sale online store at wholesale price.US/EU warehouse.
That's my affiliate link by the way (that was already in my clipboard), looking at it, it's a pre-order Call To Action, so maybe it's not been released at all yet?
HAlexa... im sorry @midnight adder
Hi all, newbie alert!
This is in my scripts:
alias: licht 1 uit 255
sequence:
- data:
brightness: 1
service: light.turn_on
I expect the lights to turn on on their lowest level. And that seems to happen, the remote cannot lower the brightness anymore. (by the way: it's ikea tradfri).
I am a bit disappointed in the amount of light being generated; it's more than 1 expect to see for 1/255. Am I doing somehting wrong?
Paulus Schoutsen, the founder of Home Assistant, presents on why and how Home Assistant got started, what we have achieved in the last 5 years and where it's...
good stuff !!!
Love to meet this guy one time,
he's only out of stickers now ;p
Cyber monday is coming - somebody knows a good VPN?
If you find any good deals @hearty depot would you let me know please and I'll put them on my "BlackFriday deals for {country} HomeAssistant users" webpages?
Shure - But atm nothing is opend - Thourght on buying BlackVPN again and did come over the thebestvpn.com/ review - Destroying in my eyes - But the support told me last year that they have every year a cyber monday deal.
@oak marsh Wrote 10 mails and found the first With a deal on the page - https://zoogvpn.com/ Redicusly cheap but policy: we may also gather data on connection information, including the timing and size of all packets sent over the Internet during a session
75% Off at NordVPN
Trust Zone (no.5 on thebestvpn.com ) On WEDNESDAY a deal (will sell 2 years with lower cost per month)
-70% for SmartDNSProxy with link (24 Months - $34.90 (70% off)
Any other blackfriday/cyber monday deals for HA stuff?
I posted 2 pages yesterday @vapid mirage with black friday deals for users in the UK and US, some are affiliate links, some are not, but each one is the cheapest price I can find. All of the items have been checked against the HA Components page as well. https://hasscasts.com/blackfriday-deals-for-us-homeassistant-users/ and https://hasscasts.com/blackfriday-deals-for-uk-homeassistant-users/
@oak marsh cheers!
Anyone here with Sonoff Bridge?
Ive got it in my shopping cart - does it count?
@hearty depot illd say PIA, all of their staff that I have met(i have met them IRL as they sponser freenode and freenode live and had staff members at the conference) are really nice and actually care about privacy one of them had a spreadsheet of all of the VPNs and what they do and don't do
sorry @pure vine dont get the first part with: illd say PIA.
here is a goot spreadsheet to compare - but you have to do of cause more research
https://thatoneprivacysite.net/vpn-comparison-chart/
after deleting everything I dont like ive got only 11 left
and the 11 are with blackVPN for example - when you dig a little you find out that blaxk for example is a goverment sponsored vpn - wich also contains traces of a trojan with the software
Where is my thinfoil hat btw?
Mr?
@hearty depot oh, 1 more thing with PIA is that they are beginning to open source their stuff
ah PIA is privateinternetaccess?
Yes
I have been using that for about a year now, and have not had any issues with the service
I was sitting at a table for lunch with one of their staff and he said one of the main reasons is that they are open sourcing a lot is because their value is in the amount of servers(so its not the same server your connecting to and makes your connection harder to track) in their network rather than their software
I look also forwad to the Substratum Network
But it ll take some time I guess
.away zZz ๐
Underknowledge is away! zZz ๐ :wave:
@sleek hull bangood i assume?
@vapid mirage what?
grr. my apologies, i meant @hearty depot
Underknowledge is away for 34m 34s with a message :point_right: zZz ๐
Ah, okay
how ya going every one
@vapid mirage Amazon tbh - I have to get a credit card again some time
Right Everyone, I'm going on the hunt for BlackFriday bargains, is there anything anybody wants me to keep an eye out for? Full disclosure: If I can find an affiliate link for the same sale price I will but I'll always list the item that has the cheapest price - affiliate link or not ๐
any one haveing troble getting on HA website??
Nope, working fine
ERR_SSL_VERSION_INTERFERENCE
oh its ok my new Free Antivirus kaspersky was stopping it
๐คฃ
didn't think it would stop an website for opening?
It sounds like it's acting like a proxy
So able to inspect everything, and you know, inject whatever it wants
It sound like it was trying to use a downgrade attack
?? I really don't know what you guys talking about
It does that either by installing something in the web browsers, or just transparently intercepting everything, decrypting it, and then re-encrypting it
This is ok when the developers know what they're doing, and a disaster the rest of the time (like now)
@clever mortar i think that Kaspeersky was trying to use this as they where being lazy https://en.wikipedia.org/wiki/POODLE
The POODLE attack (which stands for "Padding Oracle On Downgraded Legacy Encryption") is a man-in-the-middle exploit which takes advantage of Internet and security software clients' fallback to SSL 3.0. If attackers successfully exploit this vulnerability, on average, they on...
Hi Everyone, Is anyone good with Sonoff motion sensor CT60? I'm stumped on something with it? Anyone?
what is the difference between #330944238910963714 and #330990055533576204 channels
it says on the topics for those channels
#330990055533576204 "Discussions only about Hass.io (HassOS or ResinOS) and its add-ons. Please read the documentation at ttp://hass.io/hassio/ before you ask questions, and read ttps://www.home-assistant.io/faq/#home-assistant-vs-hassio to understand what's Hass.io, and what's Home Assistant"
Alexa Dot is like half price.
here's hoping for some good black friday deals on xiaomi aqara sensors
I'm planning to make my gym/garage my HA #1 project
because I can get a Qubino relay with temperature sensor to be my door opener and temp sensor
and I can fit a switch that deals with internal and external lights
and setup nice simple gym-based automations
why are all light-switch replacements so ugly?
@amber bramble me too
If I don't want to use emulated hue with Alexa, does it matter if I have a Gen 3 Echo Dot or a Gen 2?
Hi, Iโm Fish. Iโm a bit of an anomaly. I work with technology (server, storage, backup, virtualization) but have very little of it at home. I just implemented a wood burning fireplace which has a heat dump kit tied into my electric forced air furnace system. This means I have 2 heat sources, 2 fans, a traditional thermostat and what I assume is a 120v POT or PWM for heat dump fan speed control. I have the want for automated control of these systems to balance the heat from the main room where the fireplace is to the rest of the house
For my down-to-the-studs renovation is there enough of a benefit to CAT6a to justify the cost over CAT6? FWIW I'm going to be doing a somewhat PoE heavy install
Depends on how big your house is and how long those runs are
If you're looking at 10 Gbe then there's a practical limit of around 50 meters with CAT6
The theoretical limit of 10Gbe is 1250MBps. Youโll need NVMe or significant SSD raid sets to transfer data to and from to maximize.
Anyone here good with SQL and can quickly help me with an addition script?
has anyone installed EverSpring ad146 2 wire?
is there a AA for packages ....even i think this is getting too much ๐คฃ https://github.com/Vasiley/Home-Assistant-Main/tree/master/packages
?rank other
@strong hound, you joined Other.
?rank other
@wet pilot, you joined Other.
so wth is going on with my Google Home Mini. I say hey google, turn on the bedroom lamp and it answers with okay, turning on the hallway crown and turns that one on.... ๐ฉ
its developing hearing problems. must be getting old
weirdly enough it hears it wrong the exact same way every single time
simple solution, change the name of the bedroom lamp
there's no way it actually is mishearing me. "bedroom lamp" doesn't turn in to "hallway crown" with 100% accuracy and it's worked perfectly before. It's some weird bug with GH I think
Have you turned it off and on
@shy notch Home Assistant is on the (short)list 'Smart Home Platform of the Year' at: https://www.the-ambient.com/news/the-ambient-awards-2018-shortlists-1172
this is a great read to remind you to pay attention to the whole ecosystem
Or dont put extention leads into smart plugs and then forget about it
I found a new favorite quote turns out, I'm just an idiot with a home that's smarter than I am.
Hi everyone Iโm new here. I joined awhile ago but never followed discussion until now. Iโm a senior sysadmin by day and I like to tinker with SBCs in my off time. I just got started earlier this year learning about them and Iโve learned a great deal of Linux commands in the process. I particularly like the Raspberry Pi and have a few of them now, also an Acer Tinkerboard. Iโm familiar with imaging process but I want to get more into Balena OS (formerly resin.io) for something useful. Can anyone recommend a good starter project to get my feet wet? I tried the Hass.io image but I couldnโt get it to quiesce. It kept displaying that it was searching for the network and I could not get a web interface to come up by remotely connecting to it.
*Asus not Acer
haas.io makes a few assumptions that the Tinkerboard might not be fitting
might be better off installing an OS that works on that board and then install HA via the virtual-env method
Yeah, I'd install a Debian based OS of your choice and follow https://www.home-assistant.io/docs/installation/raspberry-pi/
Of course, that's a better question to ask in #330944238910963714 really - worth reading the channel topics ๐
Anyone use Glances here?
i think Frenck was playing around with that yesterday
Hmm my car charger has been found as "traffic light" by tensorflow..
@violet brook - ha! At what confidence level? Might want to add the confidence filter to your config.
For who lives in italy:
unieuro is putting out so many sweet deals online, check em out!
Hey guys I'm new here how's everyone doing?
I recently got myself some smart switches to control my lights and my electric heater and linked them up with google home. However my friend claimed that this isnt "smart" and is merely just remote control. So I've ordered a raspberry pi and I'm gonna take the next step by installing Home Assistant and letting it do everything for me with minimal input from my end.
Welcome to the "Rabbit Hole" but it is def doable.... just do some research on what you want..... in forums ....history here and etc
Yes whilst I don't have much coding experience I am comfortable with command line and googling so I should be ok with basic configurations at least
Well thats half the battle....Good Luck need help just ask..... There are alot of folks here that can and will help
got it! thanks for the encouragement!
๐
Am I starting to go crazy? I just realized im arguing with alexa lol
YEP
Bpootanimation
ive been pondering switching to a unifi switch and a usg pro
but i really like my current setup lol
๐ฎ
So i run multiple unifi aps and a unifi 10g switch for aggregate
some older cisco SMB switchse that plug into the unif switch
I was thinking of going to OpnSense myself.
and then the usg
ive got a few unifi aps, love them
i love the aps too!
