mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-04 09:10:02 +01:00
63 lines
2.3 KiB
ReStructuredText
63 lines
2.3 KiB
ReStructuredText
MAX6675 K-Type Thermocouple Temperature Sensor
|
|
==============================================
|
|
|
|
The ``max6675`` temperature sensor allows you to use your max6675 thermocouple
|
|
temperature sensor (`datasheet <https://datasheets.maximintegrated.com/en/ds/MAX6675.pdf>`__, `sainsmart`_) with esphomelib
|
|
|
|
.. figure:: images/max6675-full.jpg
|
|
:align: center
|
|
:width: 60.0%
|
|
|
|
MAX6675 K-Type Thermocouple Temperature Sensor.
|
|
|
|
.. _sainsmart: https://www.sainsmart.com/products/max6675-module-k-type-thermocouple-thermocouple-sensor-temperature-0-1024-for-arduino
|
|
|
|
As the communication with the MAX66775 is done using SPI, you need
|
|
to have an :ref:`spi bus <spi>` in your configuration with the **miso_pin** set (mosi is not required).
|
|
|
|
Connect ``GND`` to ``GND``, ``VCC`` to ``3.3V`` and the other three ``MISO`` (or ``SO`` for short),
|
|
``CS`` and ``CLOCK`` (or ``CLK``) to free GPIO pins.
|
|
|
|
.. figure:: images/temperature.png
|
|
:align: center
|
|
:width: 80.0%
|
|
|
|
.. code:: yaml
|
|
|
|
# Example configuration entry
|
|
spi:
|
|
miso_pin: D0
|
|
clk_pin: D1
|
|
|
|
sensor:
|
|
- platform: max6675
|
|
name: "Living Room Temperature"
|
|
cs_pin: D2
|
|
update_interval: 15s
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **name** (**Required**, string): The name for the temperature sensor.
|
|
- **cs_pin** (**Required**, :ref:`Pin Schema <config-pin_schema>`): The Chip Select pin of the SPI interface.
|
|
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the sensor. Defaults to ``15s``.
|
|
See :ref:`sensor-default_filter`.
|
|
- **spi_id** (*Optional*, :ref:`config-id`): Manually specify the ID of the :ref:`SPI Component <spi>` if you want
|
|
to use multiple SPI buses.
|
|
- **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>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :ref:`sensor-filters`
|
|
- :doc:`dallas`
|
|
- :doc:`dht`
|
|
- :doc:`adc`
|
|
- :doc:`sht3xd`
|
|
- `MAX6675 Library <https://github.com/adafruit/MAX6675-library>`__ by `Adafruit <https://www.adafruit.com/>`__
|
|
- :doc:`API Reference </api/sensor/max6675>`
|
|
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/esphomeyaml/components/sensor/max6675.rst>`__
|
|
|
|
.. disqus::
|