mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-12-24 17:08:15 +01:00
Add support for EE895, HTE501 and TEE501 sensors (#2241)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: H. Árkosi Róbert <robreg@zsurob.hu>
This commit is contained in:
parent
170f9fa40b
commit
d0378c71b8
72
components/sensor/ee895.rst
Normal file
72
components/sensor/ee895.rst
Normal file
@ -0,0 +1,72 @@
|
||||
EE895 CO₂, Temperature and Pressure Sensor
|
||||
===================================================
|
||||
|
||||
.. seo::
|
||||
:description: Instructions for setting up EE895 CO₂ Temperature and Pressure
|
||||
:image: EE895.png
|
||||
|
||||
The ``ee895`` sensor platform allows you to use your EE895 CO₂
|
||||
(`datasheet <https://www.epluse.com/fileadmin/data/product/ee895/BA_EE895.pdf>`__,
|
||||
`E+E TEE501 <https://www.epluse.com/products/co2-measurement/co2-modules-and-probes/ee895/>`__) sensor with ESPHome.
|
||||
The :ref:`I²C Bus <i2c>` is required to be set up in your configuration for this sensor to work. We recommend the use of pull up resistors.
|
||||
|
||||
.. figure:: images/EE895.png
|
||||
:align: center
|
||||
:width: 80.0%
|
||||
|
||||
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
# Example configuration entry
|
||||
sensor:
|
||||
- platform: ee895
|
||||
co2:
|
||||
name: "Office CO2"
|
||||
accuracy_decimals: 0
|
||||
temperature:
|
||||
name: "Office Temperature"
|
||||
accuracy_decimals: 2
|
||||
pressure:
|
||||
name: "Office Pressure"
|
||||
accuracy_decimals: 1
|
||||
address: 0x5F
|
||||
update_interval: 15s
|
||||
|
||||
Configuration variables:
|
||||
------------------------
|
||||
|
||||
- **temperature** (*Required*): The information for the Temperature sensor.
|
||||
|
||||
- **name** (**Required**, string): The name for the temperature sensor.
|
||||
- **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas.
|
||||
- All other options from :ref:`Sensor <config-sensor>`.
|
||||
|
||||
- **co2** (*Required*): The information for the CO₂ sensor.
|
||||
|
||||
- **name** (**Required**, string): The name for the CO₂eq sensor.
|
||||
- **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas.
|
||||
- All other options from :ref:`Sensor <config-sensor>`.
|
||||
|
||||
- **Pressure** (*Required*): The information for the Pressure sensor.
|
||||
|
||||
- **name** (**Required**, string): The name for the Pressure sensor.
|
||||
- **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas.
|
||||
- All other options from :ref:`Sensor <config-sensor>`.
|
||||
|
||||
- **address** (*Optional*, int): Manually specify the I²C address of the sensor.
|
||||
Defaults to ``0x5F``.
|
||||
|
||||
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the
|
||||
sensor. Defaults to ``60s``.
|
||||
|
||||
See Also
|
||||
--------
|
||||
|
||||
- :ref:`sensor-filters`
|
||||
- :doc:`tee501`
|
||||
- :doc:`hte501`
|
||||
- :doc:`dht`
|
||||
- :doc:`dht12`
|
||||
- :apiref:`ee895/ee895.h`
|
||||
- :ghedit:`Edit`
|
60
components/sensor/hte501.rst
Normal file
60
components/sensor/hte501.rst
Normal file
@ -0,0 +1,60 @@
|
||||
HTE501 Temperature+Humidity Sensor
|
||||
===================================
|
||||
|
||||
.. seo::
|
||||
:description: Instructions for setting up HTE501 temperature and humidity sensors
|
||||
:image: HTE501.png
|
||||
|
||||
The ``hte501`` sensor platform Temperature+Humidity sensor allows you to use your HTE501
|
||||
(`datasheet <https://www.epluse.com/fileadmin/data/product/hte501/datasheet_HTE501.pdf>`__ ,
|
||||
`E+E HTE501 <https://www.epluse.com/products/humidity-instruments/humidity-sensing-elements/hte501/>`__) sensor with
|
||||
ESPHome. The :ref:`I²C Bus <i2c>` is
|
||||
required to be set up in your configuration for this sensor to work.
|
||||
|
||||
|
||||
.. figure:: images/HTE501.png
|
||||
:align: center
|
||||
:width: 80.0%
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
# Example configuration entry
|
||||
sensor:
|
||||
- platform: hte501
|
||||
temperature:
|
||||
name: "Office Temperature"
|
||||
humidity:
|
||||
name: "Office Humidity"
|
||||
address: 0x40
|
||||
update_interval: 60s
|
||||
|
||||
Configuration variables:
|
||||
------------------------
|
||||
|
||||
- **temperature** (**Required**): The information for the temperature sensor.
|
||||
|
||||
- **name** (**Required**, string): The name for the temperature sensor.
|
||||
- **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas.
|
||||
- All other options from :ref:`Sensor <config-sensor>`.
|
||||
|
||||
- **humidity** (**Required**): The information for the humidity sensor.
|
||||
|
||||
- **name** (**Required**, string): The name for the humidity sensor.
|
||||
- **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas.
|
||||
- All other options from :ref:`Sensor <config-sensor>`.
|
||||
|
||||
- **address** (*Optional*, int): Manually specify the I²C address of the sensor.
|
||||
Defaults to ``0x40``.
|
||||
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the
|
||||
sensor. Defaults to ``60s``.
|
||||
|
||||
See Also
|
||||
--------
|
||||
|
||||
- :ref:`sensor-filters`
|
||||
- :doc:`tee501`
|
||||
- :doc:`ee895`
|
||||
- :doc:`dht`
|
||||
- :doc:`dht12`
|
||||
- :apiref:`hte501/hte501.h`
|
||||
- :ghedit:`Edit`
|
BIN
components/sensor/images/EE895.png
Normal file
BIN
components/sensor/images/EE895.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 98 KiB |
BIN
components/sensor/images/HTE501.png
Normal file
BIN
components/sensor/images/HTE501.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
components/sensor/images/TEE501.png
Normal file
BIN
components/sensor/images/TEE501.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
47
components/sensor/tee501.rst
Normal file
47
components/sensor/tee501.rst
Normal file
@ -0,0 +1,47 @@
|
||||
TEE501 Temperature Sensor
|
||||
==========================
|
||||
|
||||
.. seo::
|
||||
:description: Instructions for setting up TEE501 temperature sensors
|
||||
:image: TEE501.png
|
||||
|
||||
The ``hte501`` sensor platform Temperature sensor allows you to use your TEE501
|
||||
(`datasheet <https://www.epluse.com/fileadmin/data/product/tee501/datasheet_TEE501.pdf>`__,
|
||||
`E+E TEE501 <https://www.epluse.com/products/temperature-measurement/temperature-sensing-element/tee501/>`__) sensor with
|
||||
ESPHome. The :ref:`I²C Bus <i2c>` is
|
||||
required to be set up in your configuration for this sensor to work.
|
||||
|
||||
.. figure:: images/TEE501.png
|
||||
:align: center
|
||||
:width: 80.0%
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
# Example configuration entry
|
||||
sensor:
|
||||
- platform: tee501
|
||||
name: "Office Temperature"
|
||||
address: 0x48
|
||||
update_interval: 60s
|
||||
|
||||
Configuration variables:
|
||||
------------------------
|
||||
|
||||
- **name** (**Required**, string): The name for the temperature sensor.
|
||||
- **address** (*Optional*, int): Manually specify the I²C address of the sensor.
|
||||
Defaults to ``0x48``.
|
||||
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the
|
||||
sensor. Defaults to ``60s``.
|
||||
- **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas.
|
||||
- All other options from :ref:`Sensor <config-sensor>`.
|
||||
|
||||
See Also
|
||||
--------
|
||||
|
||||
- :ref:`sensor-filters`
|
||||
- :doc:`hte501`
|
||||
- :doc:`ee895`
|
||||
- :doc:`dht`
|
||||
- :doc:`dht12`
|
||||
- :apiref:`tee501/tee501.h`
|
||||
- :ghedit:`Edit`
|
@ -50,6 +50,7 @@ See Also
|
||||
- :doc:`/devices/nodemcu_esp8266`
|
||||
- :doc:`/components/display/ssd1306`
|
||||
- :doc:`/components/sensor/bme280`
|
||||
- :doc:`/components/sensor/ee895`
|
||||
- :doc:`/components/sensor/pmsx003`
|
||||
- :doc:`/components/sensor/mhz19`
|
||||
- :doc:`/components/sensor/sgp30`
|
||||
|
BIN
images/EE895.png
Normal file
BIN
images/EE895.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
BIN
images/HTE501.png
Normal file
BIN
images/HTE501.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
BIN
images/TEE501.png
Normal file
BIN
images/TEE501.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
@ -171,6 +171,7 @@ Air Quality
|
||||
|
||||
AirThings BLE, components/sensor/airthings_ble, airthings_logo.png, Radon, CO2, Volatile organics
|
||||
CCS811, components/sensor/ccs811, ccs811.jpg, CO2 & Volatile organics
|
||||
EE895, components/sensor/ee895, EE895.png, CO2 & Temperature & Pressure
|
||||
HM3301, components/sensor/hm3301, hm3301.jpg, Particulate
|
||||
MH-Z19, components/sensor/mhz19, mhz19.jpg, CO2 & Temperature
|
||||
PM1006 Sensor, components/sensor/pm1006, pm1006.jpg, Particulate
|
||||
@ -287,6 +288,7 @@ Environmental
|
||||
DPS310, components/sensor/dps310, dps310.jpg, Temperature & Pressure
|
||||
ENS210, components/sensor/ens210, ens210.jpg, Temperature & Humidity
|
||||
HDC1080, components/sensor/hdc1080, hdc1080.jpg, Temperature & Humidity
|
||||
HTE501, components/sensor/hte501, HTE501.png, Temperature & Humidity
|
||||
Honeywell ABP, components/sensor/honeywellabp, honeywellabp.jpg, Pressure & Temperature
|
||||
HTU21D / Si7021 / SHT21, components/sensor/htu21d, htu21d.jpg, Temperature & Humidity
|
||||
Hydreon Rain Sensor, components/sensor/hydreon_rgxx, hydreon_rg9.jpg, Rain
|
||||
@ -307,6 +309,7 @@ Environmental
|
||||
SHTCx, components/sensor/shtcx, shtc3.jpg, Temperature & Humidity
|
||||
SMT100, components/sensor/smt100, smt100.jpg, Moisture & Temperature
|
||||
STS3X, components/sensor/sts3x, sts3x.jpg, Temperature
|
||||
TEE501, components/sensor/tee501, TEE501.png, Temperature
|
||||
TMP102, components/sensor/tmp102, tmp102.jpg, Temperature
|
||||
TMP117, components/sensor/tmp117, tmp117.jpg, Temperature
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user