esphome-docs/devices/nodemcu_esp8266.rst

79 lines
2.9 KiB
ReStructuredText
Raw Normal View History

2018-06-01 18:10:00 +02:00
NodeMCU ESP8266
===============
2018-11-14 22:12:27 +01:00
.. seo::
2019-02-16 23:25:23 +01:00
:description: Instructions for using nodemcu ESP8266 boards in ESPHome together with a description of their pins and uses.
2018-11-14 22:12:27 +01:00
:image: nodemcu_esp8266.jpg
:keywords: NodeMCU, ESP8266
2019-02-16 23:25:23 +01:00
The NodeMCU board is fully supported by ESPHome. Simply select ``ESP8266`` when
the ESPHome wizard asks you for your platform and |nodemcuv2|_ as the board type.
2018-06-01 18:10:00 +02:00
.. note::
Most NodeMCU that can be purchased now are version 2 or upwards. If you're using an
2018-06-01 18:10:00 +02:00
original v1 board, set the board type to |nodemcu|_.
.. |nodemcuv2| replace:: ``nodemcuv2``
.. _nodemcuv2: http://docs.platformio.org/en/latest/platforms/espressif8266.html#nodemcu
.. |nodemcu| replace:: ``nodemcu``
.. _nodemcu: http://docs.platformio.org/en/latest/platforms/espressif8266.html#nodemcu
.. code-block:: yaml
2018-06-01 18:10:00 +02:00
# Example configuration entry
2019-02-16 23:25:23 +01:00
esphome:
2018-06-01 18:10:00 +02:00
name: livingroom
2022-02-10 23:10:43 +01:00
esp8266:
2018-06-01 18:10:00 +02:00
board: nodemcuv2
The NodeMCU's pin numbering as seen on the board (the ``D0`` etc pins) is different from
the internal pin numbering. For example, the ``D3`` pin number maps to the internal
2019-02-16 23:25:23 +01:00
``GPIO0`` pin. Fortunately ESPHome knows the mapping from the on-board pin numbers
to the internal pin numbering, but you need to prefix the pin numbers with ``D`` as in
the image below in order for this automatic mapping to occur.
2018-06-01 18:10:00 +02:00
In general, it is best to just use the ``D0``, ``D1``, ... pin numbering to avoid confusion
.. figure:: images/nodemcu_esp8266-full.jpg
:align: center
Pins on the NodeMCU ESP8266 development board.
Note that in certain conditions you *can* use the pins marked as ``INTERNAL`` in above image.
- ``D0`` also can be used to wake the device up from :doc:`deep sleep </components/deep_sleep>` if
2021-08-25 03:37:12 +02:00
the pin is connected to the ``RESET`` pin. On some boards ``D0`` is additionally connected to the LED
2018-06-01 18:10:00 +02:00
next to the UART chip, but in an inverted mode.
- ``D3``, ``D4`` and ``D8`` are used on startup to determine the boot mode, therefore these pins should
not be pulled low on startup. You can, however, still use them as output pins.
2021-08-25 03:37:12 +02:00
- ``D4`` additionally is connected to the blue LED next to the antenna, but in an inverted mode.
2018-06-01 18:10:00 +02:00
- ``A0``: This pin can be used as a normal GPIO pin (like ``D1`` etc) but additionally can measure
voltages from 0 to 1.0V using the :doc:`/components/sensor/adc`.
- ``VIN``: This board can be powered by an external power supply by using this pin. Supply a voltage depends on the board you use. Some boards support up to 12V, some up to 5V.
2018-06-01 18:10:00 +02:00
- ``ENABLE``/``RESET``: When these pins are triggered, the board resets. The difference between the pins
is how they can handle voltages above 3.3V.
2018-06-01 18:10:00 +02:00
.. code-block:: yaml
2018-06-01 18:10:00 +02:00
# Example configuration entry
2019-02-16 23:25:23 +01:00
esphome:
2018-06-01 18:10:00 +02:00
name: livingroom
2022-02-10 23:10:43 +01:00
esp8266:
2018-06-01 18:10:00 +02:00
board: nodemcuv2
binary_sensor:
- platform: gpio
name: "Pin D0"
pin: D0
See Also
2018-08-24 22:44:01 +02:00
--------
2018-06-01 18:10:00 +02:00
- :doc:`/components/esp8266`
2018-06-01 18:10:00 +02:00
- :doc:`nodemcu_esp32`
- :ghedit:`Edit`