esphome-docs/esphomeyaml/cookbook/bruh.rst

94 lines
2.2 KiB
ReStructuredText
Raw Normal View History

2018-06-01 18:10:00 +02:00
BRUH Multisensor
================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for re-creating a BRUH multisensor using esphomelib.
:image: bruh.png
2018-06-01 18:10:00 +02:00
The BRUH Multisensor is a great introductory project into Home Automation with an
amazing setup tutorial. And fortunately esphomelib has complete support for all the
stuff used by the Multisensor 🎉
.. raw:: html
<iframe width="560" height="315" src="https://www.youtube.com/embed/jpjfVc-9IrQ" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
Thank you very much to `@jackjohnsonuk <https://github.com/jackjohnsonuk>`__ for providing this
configuration file 😀
.. code:: yaml
esphomeyaml:
name: <NODE_NAME>
platform: ESP8266
board: nodemcuv2
wifi:
ssid: <SSID>
password: <PASSWORD>
mqtt:
broker: <MQTT_BROKER>
username: <USER>
password: <PASSWORD>
# Enable logging
logger:
ota:
sensor:
- platform: dht
pin: D7
temperature:
name: "Multisensor Temperature"
humidity:
name: "Multisensor Humidity"
- platform: adc
pin: A0
name: "Multisensor Brightness"
unit_of_measurement: lux
filters:
- lambda: >-
return (x / 10000.0) * 2000000.0;
binary_sensor:
- platform: gpio
pin: D5
name: "Multisensor Motion"
device_class: motion
output:
- platform: esp8266_pwm
pin: D1
id: redgpio
- platform: esp8266_pwm
pin: D2
id: greengpio
- platform: esp8266_pwm
pin: D3
id: bluegpio
light:
- platform: rgb
name: "Multisensor Light"
red: redgpio
green: greengpio
blue: bluegpio
See Also
2018-08-24 22:44:01 +02:00
--------
2018-06-01 18:10:00 +02:00
- :doc:`/esphomeyaml/devices/nodemcu_esp8266`
- :doc:`pir`
- :doc:`temt6000`
- :doc:`/esphomeyaml/components/light/rgb`
- :doc:`/esphomeyaml/components/output/esp8266_pwm`
- :doc:`/esphomeyaml/components/sensor/dht`
- :doc:`/esphomeyaml/components/sensor/adc`
- :doc:`/esphomeyaml/components/binary_sensor/gpio`
2018-06-04 08:17:22 +02:00
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/esphomeyaml/cookbook/bruh.rst>`__
2018-10-12 16:33:22 +02:00
.. disqus::