Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- esphome:
- name: give a name
- platform: ESP8266
- board: esp01_1m
- libraries:
- - SPI
- # Enable logging
- logger:
- # Enable Home Assistant API
- api:
- ota:
- password: ota password
- wifi:
- ssid: your ssid
- password: your password
- manual_ip:
- static_ip: static ip
- gateway: your gateway
- subnet: your subnet
- dns1: your dns
- dns2: your dns
- # Enable fallback hotspot (captive portal) in case wifi connection fails
- ap:
- ssid: "hotspot name"
- password: "password"
- i2c:
- sda: your GPIO number
- scl: Your GPIO number
- scan: true
- id: bus_a
- bme680_bsec:
- # i2c address
- # -----------
- # Common values are:
- # - 0x76
- # - 0x77
- # Default: 0x76
- address: 0x77
- # Temperature offset
- # ------------------
- # Useful if device is in enclosure and reads too high
- # Default: 0
- temperature_offset: 0
- # IAQ calculation mode
- # --------------------
- # Available options:
- # - static (for fixed position devices)
- # - mobile (for on person or other moveable devices)
- # Default: static
- iaq_mode: static
- # Sample rate
- # -----------
- # This controls the sampling rate for gas-dependant sensors and will govern the interval
- # at which the sensor heater is operated.
- # By default this rate will also be used for temperature, pressure and humidity sensors
- # but these can be overridden on a per-sensor level if required.
- #
- # Available options:
- # - lp (low power - samples every 3 seconds)
- # - ulp (ultra low power - samples every 5 minutes)
- # Default: lp
- sample_rate: ulp
- # Interval at which to save BSEC state
- # ------------------------------------
- # Default: 6h
- state_save_interval: 6h
- sensor:
- - platform: bme680_bsec
- temperature:
- # Temperature in °C
- name: "Master Bedroom Temperature"
- sample_rate: lp
- filters:
- - median
- pressure:
- # Pressure in hPa
- name: "Master Bedroom Pressure"
- sample_rate: lp
- filters:
- - median
- humidity:
- # Relative humidity %
- name: "Master Bedroom Humidity"
- sample_rate: lp
- filters:
- - median
- gas_resistance:
- # Gas resistance in Ω
- name: "Master Bedroom Gas Resistance"
- filters:
- - median
- iaq:
- # Indoor air quality value
- name: "Master Bedroom IAQ"
- filters:
- - median
- iaq_accuracy:
- # IAQ accuracy as a numeric value of 0, 1, 2, 3
- name: "Master Bedroom Numeric IAQ Accuracy"
- co2_equivalent:
- # CO2 equivalent estimate in ppm
- name: "Master Bedroom CO2 Equivalent"
- filters:
- - median
- breath_voc_equivalent:
- # Volatile organic compounds equivalent estimate in ppm
- name: "Master Bedroom Breath VOC Equivalent"
- filters:
- - median
- text_sensor:
- - platform: bme680_bsec
- iaq_accuracy:
- # IAQ accuracy as a text value of Stabilizing, Uncertain, Calibrating, Calibrated
- name: "Master Bedroom IAQ Accuracy"
- captive_portal:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement