mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-04 09:10:02 +01:00
8d9b0d2375
* Netlify * Fix * Faster doxygen * Update Makefile * Try without api * Debug * Fix * Update Makefile * Debug * Try 1.8.13 * Remove debug * Update Makefile * Optimize
49 lines
1.7 KiB
ReStructuredText
49 lines
1.7 KiB
ReStructuredText
Dallas Temperature Component
|
|
============================
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up dallas temperature sensor hubs that can expose many temperature sensors on a single pin using the one wire protocol.
|
|
:image: dallas.jpg
|
|
:keywords: Dallas, ds18b20, onewire
|
|
|
|
The ``dallas`` component allows you to use your
|
|
`DS18b20 <https://www.adafruit.com/product/374>`__
|
|
(`datasheet <https://datasheets.maximintegrated.com/en/ds/DS18B20.pdf>`__)
|
|
and similar One-Wire temperature sensors.
|
|
|
|
To use your dallas sensor, first define a dallas “hub” with a pin and
|
|
id, which you will later use to create the sensors. The 1-Wire bus the
|
|
sensors are connected to should have an external pullup resistor of
|
|
about 4.7KΩ. For this, connect a resistor of *about* 4.7KΩ (values around that like 1Ω will, if you don't have
|
|
massively long wires, work fine in most cases) between ``3.3V`` and the data pin.
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
dallas:
|
|
- pin: 23
|
|
|
|
# Individual sensors
|
|
sensor:
|
|
- platform: dallas
|
|
address: 0x1c0000031edd2a28
|
|
name: "Livingroom Temperature"
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **pin** (**Required**, number): The pin the sensor bus is connected to.
|
|
- **update_interval** (*Optional*, :ref:`config-time`): The interval that the sensors should be checked.
|
|
Defaults to 60 seconds.
|
|
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`sensor/dallas`
|
|
- `Arduino DallasTemperature library <https://github.com/milesburton/Arduino-Temperature-Control-Library>`__ by `Miles Burton <https://github.com/milesburton>`__
|
|
- :apiref:`sensor/dallas_component.h`
|
|
- :ghedit:`Edit`
|
|
|
|
.. disqus::
|