esphome-docs/components/sensor/adc.rst

87 lines
2.7 KiB
ReStructuredText
Raw Normal View History

2018-05-13 11:37:02 +02:00
Analog To Digital Sensor
========================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for setting up built-in analog voltage sensors.
:image: flash.png
2018-11-14 22:12:27 +01:00
2018-05-13 11:37:02 +02:00
The Analog To Digital (``adc``) Sensor allows you to use the built-in
ADC in your device to measure a voltage on certain pins. On the ESP8266
only pin A0 (GPIO17) supports this. On the ESP32 pins GPIO32 through
GPIO39 can be used.
2018-06-01 18:10:00 +02:00
.. figure:: images/adc-ui.png
:align: center
:width: 80.0%
2018-05-13 11:37:02 +02:00
.. code-block:: yaml
2018-05-13 11:37:02 +02:00
# Example configuration entry
sensor:
- platform: adc
pin: A0
name: "Living Room Brightness"
2019-01-06 18:56:14 +01:00
update_interval: 60s
2018-05-13 11:37:02 +02:00
Configuration variables:
2018-08-24 22:44:01 +02:00
------------------------
2018-05-13 11:37:02 +02:00
2018-06-01 18:10:00 +02:00
- **pin** (**Required**, :ref:`config-pin`): The pin to measure the voltage on.
2018-06-02 13:42:51 +02:00
Or on the ESP8266 alternatively also ``VCC``, see :ref:`adc-esp8266_vcc`.
2018-06-01 18:10:00 +02:00
- **name** (**Required**, string): The name of the voltage sensor.
- **attenuation** (*Optional*): Only on ESP32. Specify the ADC
attenuation to use. See :ref:`adc-esp32_attenuation`.
- **update_interval** (*Optional*, :ref:`config-time`): The interval
2019-01-06 18:56:14 +01:00
to check the sensor. Defaults to ``60s``.
2018-06-01 18:10:00 +02:00
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
- All other options from :ref:`Sensor <config-sensor>` and :ref:`MQTT Component <config-mqtt-component>`.
.. note::
On the ESP8266, the voltage range is 0 to 1.0V - so to measure any higher voltage you need to scale the voltage
down using, for example, a voltage divider circuit.
.. _adc-esp32_attenuation:
2018-05-14 21:15:49 +02:00
ESP32 Attenuation
2018-08-24 22:44:01 +02:00
-----------------
2018-05-14 21:15:49 +02:00
On the ESP32, the voltage measured with the ADC caps out at 1.1V by default as the sensing range
or the attenuation of the ADC is set to ``0db`` by default.
2018-06-01 18:10:00 +02:00
To measure voltages higher than 1.1V, set ``attenuation`` to one of the `following values
<https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/adc.html#_CPPv225adc1_config_channel_atten14adc1_channel_t11adc_atten_t>`__:
2018-06-01 18:10:00 +02:00
- ``0db`` for a full-scale voltage of 1.1V (default)
- ``2.5db`` for a full-scale voltage of 1.5V
- ``6db`` for a full-scale voltage of 2.2V
- ``11db`` for a full-scale voltage of 3.9V
2018-06-02 13:42:51 +02:00
.. _adc-esp8266_vcc:
ESP8266 Measuring VCC
2018-08-24 22:44:01 +02:00
---------------------
2018-06-02 13:42:51 +02:00
On the ESP8266 you can even measure the voltage the chip is getting. This can be useful in situations
where you want to shut down the chip if the voltage is low when using a battery.
To measure the VCC voltage, set ``pin:`` to ``VCC`` and make sure nothing is connected to the ``A0`` pin.
.. code-block:: yaml
2018-06-02 13:42:51 +02:00
sensor:
- platform: adc
pin: VCC
name: "VCC Voltage"
2018-06-01 18:10:00 +02:00
See Also
2018-08-24 22:44:01 +02:00
--------
2018-05-14 21:15:49 +02:00
2018-06-01 18:10:00 +02:00
- :ref:`sensor-filters`
- :doc:`ads1115`
- :doc:`max6675`
- :apiref:`sensor/adc.h`
- :ghedit:`Edit`
2018-10-12 16:33:22 +02:00
.. disqus::