2018-08-22 22:05:28 +02:00
|
|
|
MS5611 Atmospheric Pressure Sensor
|
|
|
|
==================================
|
|
|
|
|
2018-11-14 22:12:27 +01:00
|
|
|
.. seo::
|
|
|
|
:description: Instructions for setting up MS5611 atmospheric pressure sensors.
|
|
|
|
:image: ms5611.jpg
|
|
|
|
:keywords: MS5611
|
|
|
|
|
2018-08-22 22:05:28 +02:00
|
|
|
The ``ms5611`` sensor platform allows you to use your MS5611 atmospheric pressure sensors
|
2019-02-27 18:32:47 +01:00
|
|
|
(`hobbytronics`_) temperature and pressure sensors with ESPHome. The :ref:`I²C <i2c>` is
|
2018-08-22 22:05:28 +02:00
|
|
|
required to be set up in your configuration for this sensor to work.
|
|
|
|
|
|
|
|
.. figure:: images/ms5611-full.jpg
|
|
|
|
:align: center
|
|
|
|
:width: 50.0%
|
|
|
|
|
|
|
|
MS5611 Atmospheric Pressure Sensor
|
|
|
|
|
|
|
|
.. _hobbytronics: http://www.hobbytronics.co.uk/ms5611-altitude-sensor
|
|
|
|
|
|
|
|
.. figure:: images/ms5611-ui.png
|
|
|
|
:align: center
|
|
|
|
:width: 80.0%
|
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
.. code-block:: yaml
|
2018-08-22 22:05:28 +02:00
|
|
|
|
|
|
|
# Example configuration entry
|
|
|
|
sensor:
|
|
|
|
- platform: ms5611
|
|
|
|
temperature:
|
|
|
|
name: "Outside Temperature"
|
|
|
|
pressure:
|
|
|
|
name: "Outside Pressure"
|
|
|
|
address: 0x77
|
2019-01-06 18:56:14 +01:00
|
|
|
update_interval: 60s
|
2018-08-22 22:05:28 +02:00
|
|
|
|
|
|
|
Configuration variables:
|
2018-10-12 16:33:22 +02:00
|
|
|
------------------------
|
2018-08-22 22:05:28 +02:00
|
|
|
|
|
|
|
- **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.
|
2019-02-17 12:28:17 +01:00
|
|
|
- All other options from :ref:`Sensor <config-sensor>`.
|
2018-08-22 22:05:28 +02:00
|
|
|
|
|
|
|
- **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.
|
2019-02-17 12:28:17 +01:00
|
|
|
- All other options from :ref:`Sensor <config-sensor>`.
|
2018-08-22 22:05:28 +02:00
|
|
|
|
2020-11-09 02:22:55 +01:00
|
|
|
- **address** (*Optional*, int): Manually specify the I²C address of
|
2018-08-22 22:05:28 +02:00
|
|
|
the sensor. Defaults to ``0x77``.
|
|
|
|
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the
|
2019-01-06 18:56:14 +01:00
|
|
|
sensor. Defaults to ``60s``.
|
2018-08-22 22:05:28 +02:00
|
|
|
|
|
|
|
See Also
|
2018-10-12 16:33:22 +02:00
|
|
|
--------
|
2018-08-22 22:05:28 +02:00
|
|
|
|
|
|
|
- :ref:`sensor-filters`
|
|
|
|
- :doc:`bmp280`
|
|
|
|
- :doc:`bme280`
|
|
|
|
- :doc:`bmp085`
|
2018-08-24 22:44:01 +02:00
|
|
|
- `Arduino MS5611 Library <https://github.com/jarzebski/Arduino-MS5611>`__ by `Korneliusz Jarzębski <https://github.com/jarzebski>`__
|
2019-05-12 22:44:59 +02:00
|
|
|
- :apiref:`ms5611/ms5611.h`
|
2019-02-07 13:54:45 +01:00
|
|
|
- :ghedit:`Edit`
|