Live data from Hacker News

Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

news.ycombinator.com

71–80 of 157 posts

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#71
I once built an Arduino project that monitored one room to an sd card while we were on holidays. That allowed me (in principle) to know if the heating could be lowered a bit more during absence. The results were not conclusive.

Another thingy tried to determine where the mouse that sometimes came into another room came from, by using infrared distance sensors. Never caught anything.

What did work was a two op fm synth with midi in and audio out. I was satisfied when it worked, so I didn't go all the way of making a 4 or 6 op version with pots and buttons (or one of those horrible deep menu systems).

So nothing practical. Just toying around, trying to get a bit of knowledge about how things work and having fun at the same time.

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#72
post #33

I put together an esp32 + accelerometer in a little 3d printed box. Made two sets and taped one of each on my washer and dryer, now they detect the start and end of a cycle and send me a notification through home assistant. The tablet in the kitchen get a notification too and makes a special sound when the clothes are done!

Oh I like that. We have LG washer and dryer but I have 0 interest in connecting then to Wi-Fi. Right now we have a z-wave button sitting on the washing machine that starts a timer when we press it, but since the washing machine has variable run times, it's imperfect.

Someone else on HN mentioned a couple of months ago that they were using a power meter for the same purpose. There are a lot of cheap zigbee and zwave outlets that will report power, though you'd have to implement the thresholding logic on your controller.

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#73
I’ve built a small scale ‘flat’ that is meant to act as a ‘living’ object that is a bed side companion for sick children that are lying in a hospital.

The idea is that you give a certain floor to family or friends so that they can control the lights (and color). The child can see if parents, grandparents or friends are home or not (based on a schedule or manual action). It gives a sense of reassurance and closeness of the relatives. Also very fun to see a living object next to your bed.

See it here: https://imgur.com/gallery/4ZOYdH5 And here (colors): https://imgur.com/gallery/z0yZJ7d

The hardware is a Atom Lite from M5Stack (see: https://shop.m5stack.com/products/atom-lite-esp32-developmen...) and a led stripe with addressable leds.

The software on the atom is micropython and the neopixel module. It connects to a webapp (through wifi) and listens to a JSON endpoint that gives the states of the leds (aka floors).

The webapp is a django app with a main user for the flat and he or she can invite others to control certain floors. All mobile friendly (no native app).

We have 4 live and deployed flats and are in the process of making more for our local hospitals.

The flat (wood) is custom made and pretty labour intensive.

A very fun project and learned a lot about hardware (and the deployment) coming from a saas background.

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#74
I've built tons of things. Most usefully, I built presence/motion/light/temperature sensors for my home, along with IR transmitter so I can control my TV/AC. They're about the size of two matchboxes, they cost about $10 each and they're amazing for my home automation:

https://gitlab.com/stavros/sensor-board/

I've built cat toys for my blind cat, toy planes, a CNC, a cat feeder, a back-scratching robot, and more stuff that I can't remember. I love the ESP8266.

Also, an e-ink display that shows my calendar:

https://www.stavros.io/posts/making-the-timeframe/

A house with a tiny person living in it:

https://www.youtube.com/watch?v=1RUqTN-7_gU

A way to project images in mid-air, for long exposure photography:

https://www.stavros.io/posts/behold-ledonardo/

A button that I can press to get food:

https://www.stavros.io/posts/emergency-food-button/

A drone that blows bubbles:

https://www.youtube.com/watch?v=xk99zrlAp9U

A toy bus that shows you when the next actual bus will come:

https://www.stavros.io/posts/bus-stop-bus/

A rotary mobile phone:

https://www.youtube.com/watch?v=fSkdWQswpc8

An alarm clock with the weather so I know whether it's worth waking up for tennis:

https://www.stavros.io/posts/do-not-be-alarmed-clock/

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#75
I built a weather dashboard using an M5Paper from M5Stack. The M5Paper has an E-ink touch display, is the size of a small smart phone, and only needs to be charged every week or so.

https://speechcode.com/blog/weather-dashboard/

I feel sheepish mentioning this project because there are so, so many weather displays like this. But this is mine, and not only was it fun to put together, but I use it every day.

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#76

I’ve built a small scale ‘flat’ that is meant to act as a ‘living’ object that is a bed side companion for sick children that are lying in a hospital. The idea is that you give a certain floor to family or friends so that they can control the lights (and color). The child can see if parents, grandparents or friends are home or not (based on a schedule or manual action). It gives a sense of reassurance and closeness o…

I built almost the same thing! Mine is a Christmas house with a tiny person living inside, you get a realistic fireplace, a TV, and the person goes around the house every so often:

https://www.youtube.com/watch?v=1RUqTN-7_gU

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#77
I made one of the prototypes of a shooting target for a wacky wheels-inspired buggy racing project with esp and a pressure sensor (bmp something) enclosed in a plastic tank. Had some fun shooting at it from a paintball gun and looking at the graphs, but real conditions were too noisy for the most mechanical prototypes. The project was abandoned. I believe I fried one esp due to the lack of electrical experience and burned few fingers. I also remember having some arduino in the loop, but can’t tell why (or if, tried few setups in process).

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#78
post #4

I built a CO2 sensor that activates a fan in my office room to pull in fresh air if the CO2 levels go above 700ppm

I like this idea, any recommendations on specific CO2 sensor modules?

Last year I wrote a blog post [1] about different CO2 sensors and how they work. The best are NDIR (light) followed by photo acoustic sensors. Indoors they have very similar performance but outdoors, the NDIR (light) are much more accurate. In my personal opinion, the best ones are from SenseAir.

[1] https://www.airgradient.com/blog/co2-sensors-photo-acoustic-...

Re: Ask HN: What have you built with ESPHome, ESP8266 or similar hardware

#80
This is a simple temperature sensor that runs on four AAA batteries and POSTS measurements via wifi: https://github.com/jcalvinowens/tempsensor

This is a LED wall clock that synchronizes time over NTP: https://github.com/jcalvinowens/wallclock

Post reply on HN