DIY ESPHome Multisensor - Temp, Humidity, RGB LED, Motion and LUX

Описание к видео DIY ESPHome Multisensor - Temp, Humidity, RGB LED, Motion and LUX

I built another multisensor for the bedroom and I decided to change up a few components. Dive in and take a step by step approach to build it with Otto Winter's ESPHome software this time around as it's been a year since I built the initial Bruh Automation version. ESPHome is easy to use and configure; No Arduino IDE, no coding, just a config file and the sensors wired up!

⚡Parts Used⚡
NodeMCU - https://geni.us/fn4BL
TSL2561 LUX Sensor - https://geni.us/Uef8mzV
Jumper Wires - https://geni.us/d3r9O
AM312 Motion Sensor - https://geni.us/OiewrL3
5mm Neopixel - https://geni.us/go3Gk25 or 8mm Neopixel - https://geni.us/kninEgN
DHT22 Temp/Humidity - https://geni.us/v3jPH

Dive into the fun world of 3D printing! https://geni.us/0hId2

⚡Products We Use/Recommend⚡
Amazon US - https://amzn.to/2YZNDeO
Amazon UK - https://amzn.to/2TnG2R4
Amazon CA - https://amzn.to/2JWsNq5

⚡Be Social!⚡
Main Website - https://www.digiblur.com
Discord Chat - https://discord.digiblur.com
Patreon - https://patreon.digiblur.com
Facebook - https://facebook.digiblur.com
Instagram - https://instagram.digiblur.com

Please note, the product links above could be affiliate links, using them could earn digiblurDIY a small commission of most purchases and helps with future video projects. Thank you!


Sample ESPHome YAML (replace the IP address and WiFi information)

esphome:
name: sensor_node1
platform: ESP8266
board: nodemcuv2

wifi:
ssid: 'yourWIFIhere'
password: 'yourPASShere'
manual_ip:
static_ip: 10.10.1.40 change this IP and remove this message
gateway: 10.10.1.1
subnet: 255.255.255.0
dns1: 10.10.1.1
dns2: 10.10.1.1

Enable logging
logger:

Enable Home Assistant API
api:

ota:

sensor:
- platform: dht
pin: D7
model: dht22
temperature:
name: "SenseNode Temp"
humidity:
name: "SenseNode Humidity"
update_interval: 30s
- platform: tsl2561
name: "SenseNode LUX"
address: 0x39
update_interval: 5s

binary_sensor:
- platform: gpio
pin: D6
name: "SenseNode Motion"
device_class: motion
on_press:
then:
- light.turn_on: ESPD4led
on_release:
then:
- light.turn_off: ESPD4led

light:
- platform: neopixelbus
type: RGB
variant: WS2811
pin: D3
num_leds: 1
name: "SenseNode LED"
- platform: binary
name: "SenseNode D4Led"
output: D4led
id: ESPD4led

i2c:
sda: D2
scl: D1
scan: False

output:
- platform: gpio
pin: D4
id: D4led
inverted: True

⚡3D Cases Used⚡
https://www.thingiverse.com/thing:236...
https://www.thingiverse.com/thing:247...

Huge shout out to Bruh Automation for starting me on this ESP8266 journey on the first version of this multisensor a year ago. Please note, the product links above could be affiliate links, using them could earn digiblurDIY a small commission of purchases potentially helping with future video projects. Thank you! As an Amazon Associate I earn from qualifying purchases. Please note, the product links above could be affiliate links, using them could earn digiblurDIY a small commission of most purchases and helps with future video projects. Thank you! As an Amazon Associate I earn from qualifying purchases.

Комментарии

Информация по комментариям в разработке