Live data from Hacker News

Home Assistant is an open-source home automation platform running on Python 3

home-assistant.io

81–90 of 178 posts

Re: Home Assistant is an open-source home automation platform running on Python 3

#81
post #43
post #14

I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips

How are you able to improve the training over time if you aren't centralizing the data anywhere?

We have many methods, but mostly voice and text can be trained offline and we refine it online with methods that can train on the device

Re: Home Assistant is an open-source home automation platform running on Python 3

#82
post #68
post #14

I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips

> (we will also open-source over time) What portion of it is currently open source?

We have a few open-source repositories now, but we will start open-sourcing more during next year

Re: Home Assistant is an open-source home automation platform running on Python 3

#83
post #14

I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips

Thank you. What is the accuracy of recognition? Does accuracy improve overtime, if so how?

The accuracy is actually very good, and will improve a lot with the new models in the next release you can test them for yourself by downloading the platform which is free!

Re: Home Assistant is an open-source home automation platform running on Python 3

#84
Is anyone else here completely confused at how much hype there is around automated light management systems? I don’t get it. Is it really that hard to turn on and off lights manually that people really need all this stuff? What am I not getting?

Re: Home Assistant is an open-source home automation platform running on Python 3

#85
post #14

I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips

This is a blog post on how to integrate Snips with Home Assistant to build your own 100% on-device Voice AI for home automation https://medium.com/snips-ai/integrating-snips-with-home-assi...

This is a blog post on how to create your own custom assistants https://medium.com/snips-ai/build-a-weather-assistant-with-s...

Re: Home Assistant is an open-source home automation platform running on Python 3

#86
post #14

I'm a co-founder of Snips https://snips.ai , we are building a 100% on-device Voice AI platform which protects your privacy as it does not rely on sending voice on servers like Google and Apple do You can use the platform for free (we will also open-source over time), it can run on Raspberry 3 and we added an integration with the amazing Home Assistant: https://home-assistant.io/components/snips

You guys are even using Rust for some of your projects on Github [0]. Yay :).

[0]: https://github.com/snipsco

Re: Home Assistant is an open-source home automation platform running on Python 3

#87
post #70

Earlier quoted context omitted.

You would likely be better off using some other solution for your light control, and then talking to that over HTTP/MQTT. I use a version of this: https://www.stavros.io/posts/wifi-enabled-rgb-led-strip-cont... It integrates nicely with HA via MQTT.

Yeah, I’m trying to switch to an arduino-based solution, but I just really want to avoid WiFi. And building custom protocols isn’t that optimal either.

There are MQTT libraries for Arduino that work with the Ethernet shield.

Re: Home Assistant is an open-source home automation platform running on Python 3

#88

Is anyone else here completely confused at how much hype there is around automated light management systems? I don’t get it. Is it really that hard to turn on and off lights manually that people really need all this stuff? What am I not getting?

Lots of time I'm lying in bed, almost falling asleep and suddenly realizing I left the kitchen light on. In fact, I'm not sure I did. But it doesn't allow me to sleep, so now I need to wake up, check the kitchen for a light that might not even be on. At that moment I'd be willing to pay a lot for a button on my phone to turn off all the lights.

Re: Home Assistant is an open-source home automation platform running on Python 3

#89
post #25
post #22

Earlier quoted context omitted.

Hey Baloob. I watched you talk at PyCon. How have your experiences been since you switched to asyncio?

asyncio is amazing. It has been way faster and more predictable. Home Assistant has a lot of small tasks running all the time with the occasional task taking a long time (ie. trying to reach a device which has been turned off). The number of tasks running simultaneously used to be limited by the size of the thread worker pool, which is no longer the case. A request taking a long time is now just a coroutine pending r…

Dude. A blog post on writing application on top of asyncio which may interchangeably use threads or async/await, and incrementally making the switch to asyncio would be awesome.

I work with a large-fintech platform which is partially powered by Python. Our old server was based around threads, queues, and socket multiplexing but we are gradually starting new applications in asyncio.

I recently completed a project in aiohttp which has been fantastic. What are your thoughts on aiohttp vs tornado?

Re: Home Assistant is an open-source home automation platform running on Python 3

#90

Is anyone else here completely confused at how much hype there is around automated light management systems? I don’t get it. Is it really that hard to turn on and off lights manually that people really need all this stuff? What am I not getting?

While I understand your skepticism, there are a few use cases for which I use HA which would be either painful manually, or would require alternate devices such as timers/etc:

1 - outside lights - various lights which light our home's pathway or areas we prefer to have lit at night come on automatically at sundown and turn off at sun-up.

2 - scenes; with HA, we can click one button - a switch with scene control in our case - and have the lights in the room go to a specific set point, receiver come on, select sonos, and tune in to a particular station - an activity which would conventionally require several manual steps with various input devices.

3 - notifications; with HA, I get notifications when the front door or garage doors are opened/closed.

There are several things I plan to implement:

1 - using presence detection and adjusting temps/lights/etc based upon that

2 - fan control; we are heavy users of ceiling fans, and integrating them into home automation would be a significant upgrade. Haven't found a replacement for our Minka controllers which supports zwave (or anything else).

All of this has been possible for years - usually with single vendor solutions which are very costly; HA integrates nearly all automation platforms into a single system allowing each platform's features to work together relatively seamlessly. It's a moving target, but has become very stable/reliable with recent releases.

Post reply on HN