this post was submitted on 02 Jul 2023
28 points (96.7% liked)
homeassistant
12027 readers
112 users here now
Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I built a pool water temp sensor using an ESP32 and a DS18B20. I drilled a hole in the pump intake pipe, installed it and now I always know the temp of the pool.
I cant find the original page I used to build it but it wasnt hard and there are similar guides online. Here is the code I am using on the ESP32
esphome: name: esp-pool-temp
esp8266: board: esp01_1m
Enable logging
logger:
Enable Home Assistant API
api:
ota: password: "fa053faa36e5d6600a5613086aaca3ca"
wifi: ssid: password: fast_connect: true
Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Pool-Espboard Fallback Hotspot"
password: "MCueN8HiEEvS"
captive_portal:
Example configuration entry
dallas:
Individual sensors
sensor:
Nice idea! Will study the possibility in my pool. Thanks!