2019-02-16 23:25:23 +01:00
|
|
|
|
ESPHome Core Configuration
|
|
|
|
|
==========================
|
2018-05-13 11:37:02 +02:00
|
|
|
|
|
2018-11-14 22:12:27 +01:00
|
|
|
|
.. seo::
|
2019-02-16 23:25:23 +01:00
|
|
|
|
:description: Instructions for setting up the core ESPHome configuration.
|
2018-11-19 18:32:16 +01:00
|
|
|
|
:image: cloud-circle.png
|
2018-11-14 22:12:27 +01:00
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
Here you specify some core information that ESPHome needs to create
|
2018-05-13 11:37:02 +02:00
|
|
|
|
firmwares. Most importantly, this is the section of the configuration
|
|
|
|
|
where you specify the **name** of the node, the **platform** and
|
|
|
|
|
**board** you’re using.
|
|
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
|
.. code-block:: yaml
|
2018-05-13 11:37:02 +02:00
|
|
|
|
|
|
|
|
|
# Example configuration entry
|
2019-02-16 23:25:23 +01:00
|
|
|
|
esphome:
|
2018-05-13 11:37:02 +02:00
|
|
|
|
name: livingroom
|
2019-10-14 11:27:41 +02:00
|
|
|
|
comment: Living room ESP32 controller
|
2018-05-13 11:37:02 +02:00
|
|
|
|
platform: ESP32
|
|
|
|
|
board: nodemcu-32s
|
|
|
|
|
|
2021-06-08 01:56:31 +02:00
|
|
|
|
.. _esphome-configuration_variables:
|
|
|
|
|
|
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
|
|
|
|
- **name** (**Required**, string): This is the name of the node. It
|
2021-05-20 16:00:53 +02:00
|
|
|
|
should always be unique in your ESPHome network. May only contain lowercase
|
2021-05-09 23:55:44 +02:00
|
|
|
|
characters, digits and hyphens. See :ref:`esphome-changing_node_name`.
|
2018-06-01 18:10:00 +02:00
|
|
|
|
- **platform** (**Required**, string): The platform your board is on,
|
2019-02-16 23:25:23 +01:00
|
|
|
|
either ``ESP32`` or ``ESP8266``. See :ref:`esphome-arduino_version`.
|
|
|
|
|
- **board** (**Required**, string): The board ESPHome should
|
2020-05-10 21:27:59 +02:00
|
|
|
|
specify for PlatformIO. For the ESP32, choose the appropriate one
|
2018-06-01 18:10:00 +02:00
|
|
|
|
from `this list <http://docs.platformio.org/en/latest/platforms/espressif32.html#boards>`__
|
|
|
|
|
and use `this list <http://docs.platformio.org/en/latest/platforms/espressif8266.html#boards>`__
|
2019-05-12 22:44:59 +02:00
|
|
|
|
for ESP8266-based boards. *This only affects pin aliases and some internal settings*, if unsure
|
|
|
|
|
choose the generic board option!
|
2018-06-13 22:38:49 +02:00
|
|
|
|
|
|
|
|
|
Advanced options:
|
|
|
|
|
|
2020-05-10 21:27:59 +02:00
|
|
|
|
- **arduino_version** (*Optional*): The version of the Arduino framework to link the project against.
|
2019-02-16 23:25:23 +01:00
|
|
|
|
See :ref:`esphome-arduino_version`.
|
|
|
|
|
- **build_path** (*Optional*, string): Customize where ESPHome will store the build files
|
2020-05-10 21:27:59 +02:00
|
|
|
|
for your node. By default, ESPHome puts all PlatformIO project files under a folder ``<NODE_NAME>/``,
|
2018-06-13 22:38:49 +02:00
|
|
|
|
but you can customize this behavior using this option.
|
2020-05-10 21:27:59 +02:00
|
|
|
|
- **platformio_options** (*Optional*, mapping): Additional options to pass over to PlatformIO in the
|
2019-02-16 23:25:23 +01:00
|
|
|
|
platformio.ini file. See :ref:`esphome-platformio_options`.
|
2019-03-17 12:10:03 +01:00
|
|
|
|
- **includes** (*Optional*, list of files): A list of C[++] files to include in the main (auto-generated) sketch file
|
2018-11-26 16:50:50 +01:00
|
|
|
|
for custom components. The paths in this list are relative to the directory where the YAML configuration file
|
2019-05-29 19:28:30 +02:00
|
|
|
|
is in. Should have file extension ``.h`` - See :ref:`esphome-includes` for more info.
|
2018-11-26 16:50:50 +01:00
|
|
|
|
- **libraries** (*Optional*, list of libraries): A list of `platformio libraries <https://platformio.org/lib>`__
|
|
|
|
|
to include in the project. See `platformio lib install <https://docs.platformio.org/en/latest/userguide/lib/cmd_install.html>`__.
|
2019-10-14 11:27:41 +02:00
|
|
|
|
- **comment** (*Optional*, string): Additional text information about this node. Only for display in UI.
|
2021-04-27 03:41:28 +02:00
|
|
|
|
- **name_add_mac_suffix** (*Optional*, boolean): Appends the last 6 bytes of the mac address of the device to
|
2021-07-28 23:56:11 +02:00
|
|
|
|
the name in the form ``<name>-aabbcc``. Defaults to ``false``.
|
2021-03-17 21:45:31 +01:00
|
|
|
|
See :ref:`esphome-mac_suffix`.
|
2019-02-26 16:55:46 +01:00
|
|
|
|
|
2021-06-09 03:04:07 +02:00
|
|
|
|
- **project** (*Optional*): ESPHome Creator's Project information. See :ref:`esphome-creators_project`.
|
|
|
|
|
|
|
|
|
|
- **name** (**Required**, string): Name of the project
|
|
|
|
|
- **version** (**Required**, string): Version of the project
|
|
|
|
|
|
2019-02-26 16:55:46 +01:00
|
|
|
|
ESP8266 Options:
|
|
|
|
|
|
2019-03-31 18:42:01 +02:00
|
|
|
|
- **esp8266_restore_from_flash** (*Optional*, boolean): Whether to save & restore data from flash on ESP8266s.
|
|
|
|
|
Defaults to ``no``. See :ref:`esphome-esp8266_restore_from_flash` for more info
|
2018-06-13 22:38:49 +02:00
|
|
|
|
|
|
|
|
|
Automations:
|
|
|
|
|
|
2018-06-07 17:07:02 +02:00
|
|
|
|
- **on_boot** (*Optional*, :ref:`Automation <automation>`): An automation to perform
|
2019-02-16 23:25:23 +01:00
|
|
|
|
when the node starts. See :ref:`esphome-on_boot`.
|
2018-06-07 17:07:02 +02:00
|
|
|
|
- **on_shutdown** (*Optional*, :ref:`Automation <automation>`): An automation to perform
|
2019-02-16 23:25:23 +01:00
|
|
|
|
right before the node shuts down. See :ref:`esphome-on_shutdown`.
|
2018-09-23 19:00:31 +02:00
|
|
|
|
- **on_loop** (*Optional*, :ref:`Automation <automation>`): An automation to perform
|
2019-02-16 23:25:23 +01:00
|
|
|
|
on each ``loop()`` iteration. See :ref:`esphome-on_loop`.
|
2018-06-01 18:10:00 +02:00
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
.. _esphome-arduino_version:
|
2018-09-23 19:00:31 +02:00
|
|
|
|
|
|
|
|
|
``arduino_version``
|
|
|
|
|
-------------------
|
|
|
|
|
|
2020-05-10 21:27:59 +02:00
|
|
|
|
ESPHome uses the Arduino framework internally to handle all low-level interactions like
|
|
|
|
|
initializing the WiFi driver and so on. Unfortunately, every Arduino framework version often
|
2018-09-23 19:00:31 +02:00
|
|
|
|
has its own quirks and bugs, especially concerning WiFi performance. With the ``arduino_version``
|
2020-05-10 21:27:59 +02:00
|
|
|
|
option you can tell ESPHome which Arduino framework to use for compiling.
|
2018-09-23 19:00:31 +02:00
|
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
|
.. code-block:: yaml
|
2018-09-23 19:00:31 +02:00
|
|
|
|
|
|
|
|
|
# Example configuration entry
|
2019-02-16 23:25:23 +01:00
|
|
|
|
esphome:
|
2018-09-23 19:00:31 +02:00
|
|
|
|
# ...
|
|
|
|
|
# Default: use the recommended version, usually this equals
|
|
|
|
|
# the latest version.
|
|
|
|
|
arduino_version: recommended
|
|
|
|
|
|
|
|
|
|
# Use the latest stable version
|
|
|
|
|
arduino_version: latest
|
|
|
|
|
|
|
|
|
|
# Use the latest staged version from GitHub, try this if you have WiFi problems
|
|
|
|
|
arduino_version: dev
|
|
|
|
|
|
|
|
|
|
# Use a specific version
|
|
|
|
|
arduino_version: 2.3.0
|
|
|
|
|
|
2020-05-10 21:27:59 +02:00
|
|
|
|
For the ESP8266, you currently can manually pin the Arduino version to these values (see the full
|
|
|
|
|
list of Arduino frameworks `here <https://github.com/esp8266/Arduino/releases>`__):
|
2018-09-23 19:00:31 +02:00
|
|
|
|
|
2021-05-17 10:23:38 +02:00
|
|
|
|
* `2.7.4 <https://github.com/esp8266/Arduino/releases/tag/2.7.4>`__ (default)
|
|
|
|
|
* `2.7.3 <https://github.com/esp8266/Arduino/releases/tag/2.7.3>`__
|
|
|
|
|
* `2.7.2 <https://github.com/esp8266/Arduino/releases/tag/2.7.2>`__
|
2020-07-27 18:32:29 +02:00
|
|
|
|
* `2.7.1 <https://github.com/esp8266/Arduino/releases/tag/2.7.1>`__
|
|
|
|
|
* `2.7.0 <https://github.com/esp8266/Arduino/releases/tag/2.7.0>`__
|
2020-05-24 01:36:32 +02:00
|
|
|
|
* `2.6.3 <https://github.com/esp8266/Arduino/releases/tag/2.6.3>`__
|
|
|
|
|
* `2.6.2 <https://github.com/esp8266/Arduino/releases/tag/2.6.2>`__
|
|
|
|
|
* `2.6.1 <https://github.com/esp8266/Arduino/releases/tag/2.6.1>`__
|
2020-07-27 18:32:29 +02:00
|
|
|
|
* `2.5.2 <https://github.com/esp8266/Arduino/releases/tag/2.5.2>`__
|
2019-06-19 11:28:47 +02:00
|
|
|
|
* `2.5.1 <https://github.com/esp8266/Arduino/releases/tag/2.5.1>`__
|
2019-03-14 16:41:37 +01:00
|
|
|
|
* `2.5.0 <https://github.com/esp8266/Arduino/releases/tag/2.5.0>`__
|
2019-11-09 18:39:13 +01:00
|
|
|
|
* `2.4.2 <https://github.com/esp8266/Arduino/releases/tag/2.4.2>`__
|
2018-09-23 19:00:31 +02:00
|
|
|
|
* `2.4.1 <https://github.com/esp8266/Arduino/releases/tag/2.4.1>`__
|
|
|
|
|
* `2.4.0 <https://github.com/esp8266/Arduino/releases/tag/2.4.0>`__
|
2020-05-24 01:36:32 +02:00
|
|
|
|
* `2.3.0 <https://github.com/esp8266/Arduino/releases/tag/2.3.0>`__
|
2018-09-23 19:00:31 +02:00
|
|
|
|
|
2020-05-10 21:27:59 +02:00
|
|
|
|
For the ESP32, there are these Arduino `framework versions <https://github.com/espressif/arduino-esp32/releases>`__:
|
2019-03-14 16:41:37 +01:00
|
|
|
|
|
2021-05-17 10:23:38 +02:00
|
|
|
|
- `1.0.6 <https://github.com/espressif/arduino-esp32/releases/tag/1.0.6>`__ (default)
|
|
|
|
|
- `1.0.5 <https://github.com/espressif/arduino-esp32/releases/tag/1.0.5>`__
|
|
|
|
|
- `1.0.4 <https://github.com/espressif/arduino-esp32/releases/tag/1.0.4>`__
|
2019-11-09 18:39:13 +01:00
|
|
|
|
- `1.0.3 <https://github.com/espressif/arduino-esp32/releases/tag/1.0.3>`__
|
2019-06-19 11:28:47 +02:00
|
|
|
|
- `1.0.2 <https://github.com/espressif/arduino-esp32/releases/tag/1.0.2>`__
|
2019-11-09 18:39:13 +01:00
|
|
|
|
- `1.0.1 <https://github.com/espressif/arduino-esp32/releases/tag/1.0.1>`__
|
2019-06-19 11:28:47 +02:00
|
|
|
|
- `1.0.0 <https://github.com/espressif/arduino-esp32/releases/tag/1.0.0>`__
|
2018-06-03 12:50:44 +02:00
|
|
|
|
|
2019-03-31 18:42:01 +02:00
|
|
|
|
.. _esphome-esp8266_restore_from_flash:
|
|
|
|
|
|
|
|
|
|
``esp8266_restore_from_flash``
|
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
|
|
With this option you can control where the state of certain components is kept on the ESP.
|
|
|
|
|
Components like ``light``, ``switch``, ``fan`` and ``globals`` can restore their state upon
|
|
|
|
|
boot.
|
|
|
|
|
|
|
|
|
|
However, by default this data is stored in the "RTC memory" section of the ESP8266s. This memory
|
|
|
|
|
is cleared when the ESP8266 is disconnected from power. So by default the state cannot be recovered
|
|
|
|
|
after power loss.
|
|
|
|
|
|
|
|
|
|
To still have these components restore their state upon power loss the state can additionally be
|
|
|
|
|
saved in *flash* memory by setting this option to ``true``.
|
|
|
|
|
|
|
|
|
|
Beware: The flash has a limited number of write cycles (usually around 100 000), after that
|
|
|
|
|
the flash section will fail. So do not use this option when you have components that update rapidly.
|
|
|
|
|
These include GPIO switches that are used internally (disable restoring with the ``restore_mode`` option),
|
|
|
|
|
certain light effects like ``random`` and the ``on_value_range`` trigger.
|
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
.. _esphome-on_boot:
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
|
|
|
|
``on_boot``
|
2018-08-24 22:44:01 +02:00
|
|
|
|
-----------
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
|
|
|
|
This automation will be triggered when the ESP boots up. By default, it is executed after everything else
|
|
|
|
|
is already set up. You can however change this using the ``priority`` parameter.
|
|
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
|
.. code-block:: yaml
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
esphome:
|
2018-06-07 17:07:02 +02:00
|
|
|
|
# ...
|
|
|
|
|
on_boot:
|
|
|
|
|
priority: -10
|
|
|
|
|
# ...
|
|
|
|
|
then:
|
2018-11-10 14:31:27 +01:00
|
|
|
|
- switch.turn_off: switch_1
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
|
|
|
|
Configuration variables:
|
|
|
|
|
|
2019-06-02 10:56:04 +02:00
|
|
|
|
- **priority** (*Optional*, float): The priority to execute your custom initialization code. A higher value
|
2021-05-20 16:00:53 +02:00
|
|
|
|
means a high priority and thus also your code being executed earlier. Please note this is an ESPHome-internal
|
2019-06-02 10:56:04 +02:00
|
|
|
|
value and any change will not be marked as a breaking change. Defaults to ``-10``. Priorities (you can use any value between them too):
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
2019-06-02 10:56:04 +02:00
|
|
|
|
- ``800.0``: This is where all hardware initialization of vital components is executed. For example setting switches
|
2018-06-07 17:07:02 +02:00
|
|
|
|
to their initial state.
|
2019-06-02 10:56:04 +02:00
|
|
|
|
- ``600.0``: This is where most sensors are set up.
|
|
|
|
|
- ``250.0``: At this priority, WiFi is initialized.
|
|
|
|
|
- ``200.0``: Network connections like MQTT/native API are set up at this priority.
|
|
|
|
|
- ``-100.0``: At this priority, pretty much everything should already be initialized.
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
|
|
|
|
- See :ref:`Automation <automation>`.
|
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
.. _esphome-on_shutdown:
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
|
|
|
|
``on_shutdown``
|
2018-08-24 22:44:01 +02:00
|
|
|
|
---------------
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
|
|
|
|
This automation will be triggered when the ESP is about to shut down. Shutting down is usually caused by
|
|
|
|
|
too many WiFi/MQTT connection attempts, Over-The-Air updates being applied or through the :doc:`deep_sleep`.
|
|
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
|
|
It's not guaranteed that all components are in a connected state when this automation is triggered. For
|
|
|
|
|
example, the MQTT client may have already disconnected.
|
|
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
|
.. code-block:: yaml
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
esphome:
|
2018-06-07 17:07:02 +02:00
|
|
|
|
# ...
|
|
|
|
|
on_shutdown:
|
|
|
|
|
then:
|
2018-11-10 14:31:27 +01:00
|
|
|
|
- switch.turn_off: switch_1
|
2018-06-07 17:07:02 +02:00
|
|
|
|
|
|
|
|
|
Configuration variables: See :ref:`Automation <automation>`.
|
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
.. _esphome-on_loop:
|
2018-09-23 19:00:31 +02:00
|
|
|
|
|
|
|
|
|
``on_loop``
|
|
|
|
|
-----------
|
|
|
|
|
|
|
|
|
|
This automation will be triggered on every ``loop()`` iteration (usually around every 16 milliseconds).
|
|
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
|
.. code-block:: yaml
|
2018-09-23 19:00:31 +02:00
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
esphome:
|
2018-09-23 19:00:31 +02:00
|
|
|
|
# ...
|
|
|
|
|
on_loop:
|
|
|
|
|
then:
|
|
|
|
|
# do something
|
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
|
.. _esphome-platformio_options:
|
2019-01-06 18:56:14 +01:00
|
|
|
|
|
|
|
|
|
``platformio_options``
|
|
|
|
|
----------------------
|
|
|
|
|
|
2020-05-10 21:27:59 +02:00
|
|
|
|
PlatformIO supports a number of options in its ``platformio.ini`` file. With the ``platformio_options``
|
|
|
|
|
parameter you can tell ESPHome what options to pass into the ``env`` section of the PlatformIO file
|
2019-01-06 18:56:14 +01:00
|
|
|
|
(Note you can also do this by editing the ``platformio.ini`` file manually).
|
|
|
|
|
|
2020-05-10 21:27:59 +02:00
|
|
|
|
You can view a full list of PlatformIO options here: https://docs.platformio.org/en/latest/projectconf/section_env.html
|
2019-01-06 18:56:14 +01:00
|
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
|
|
# Example configuration entry
|
2019-02-16 23:25:23 +01:00
|
|
|
|
esphome:
|
2019-01-06 18:56:14 +01:00
|
|
|
|
# ...
|
|
|
|
|
platformio_options:
|
|
|
|
|
upload_speed: 115200
|
|
|
|
|
board_build.f_flash: 80000000L
|
|
|
|
|
|
2019-05-29 19:28:30 +02:00
|
|
|
|
.. _esphome-includes:
|
|
|
|
|
|
|
|
|
|
``includes``
|
|
|
|
|
------------
|
|
|
|
|
|
2020-05-10 21:27:59 +02:00
|
|
|
|
With ``includes`` you can include source files in the generated PlatformIO project.
|
2019-05-29 19:28:30 +02:00
|
|
|
|
All files declared with this option are copied to the project each time it is compiled.
|
|
|
|
|
|
2020-05-10 21:27:59 +02:00
|
|
|
|
You can always look at the generated PlatformIO project (``<CONFIG_DIR>/<NODENAME>``) to see what
|
2019-05-29 19:28:30 +02:00
|
|
|
|
is happening - and if you want you can even copy the include files directly into the ``src/`` folder.
|
|
|
|
|
The ``includes`` option is only a helper option that does that for you.
|
|
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
|
|
# Example configuration entry
|
|
|
|
|
esphome:
|
|
|
|
|
# ...
|
|
|
|
|
includes:
|
|
|
|
|
- my_switch.h
|
|
|
|
|
|
|
|
|
|
This option behaves differently depending on what the included file is pointing at:
|
|
|
|
|
|
|
|
|
|
- If the include string is pointing at a directory, the entire directory tree is copied over
|
|
|
|
|
to the src/ folder.
|
|
|
|
|
- If the include string is point at a header file (.h, .hpp, .tcc) - it is copied in the src/ folder
|
|
|
|
|
AND included in the main.cpp. This way the lambda code can access it.
|
2019-10-18 09:22:48 +02:00
|
|
|
|
|
2019-05-29 19:28:30 +02:00
|
|
|
|
|
2019-06-19 11:42:30 +02:00
|
|
|
|
.. _esphome-changing_node_name:
|
|
|
|
|
|
|
|
|
|
Changing ESPHome Node Name
|
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
|
|
Trying to change the name of a node or its address in the network?
|
|
|
|
|
You can do so with the ``use_address`` option of the :doc:`WiFi configuration <wifi>`.
|
|
|
|
|
|
|
|
|
|
Change the device name or address in your YAML to the new value and additionally
|
|
|
|
|
set ``use_address`` to point to the old address like so:
|
|
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
|
|
# Step 1. Changing name from test8266 to kitchen
|
|
|
|
|
esphome:
|
|
|
|
|
name: kitchen
|
|
|
|
|
# ...
|
|
|
|
|
|
|
|
|
|
wifi:
|
|
|
|
|
# ...
|
|
|
|
|
use_address: test8266.local
|
|
|
|
|
|
|
|
|
|
Now upload the updated config to the device. As a second step, you now need to remove the
|
|
|
|
|
``use_address`` option from your configuration again so that subsequent uploads will work again
|
|
|
|
|
(otherwise it will try to upload to the old address).
|
|
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
|
|
# Step 2
|
|
|
|
|
esphome:
|
|
|
|
|
name: kitchen
|
|
|
|
|
# ...
|
|
|
|
|
|
|
|
|
|
wifi:
|
|
|
|
|
# ...
|
|
|
|
|
# Remove or comment out use_address
|
|
|
|
|
# use_address: test8266.local
|
|
|
|
|
|
|
|
|
|
The same procedure can be done for changing the static IP of a device.
|
|
|
|
|
|
2021-03-17 21:45:31 +01:00
|
|
|
|
|
|
|
|
|
.. _esphome-mac_suffix:
|
|
|
|
|
|
|
|
|
|
Adding the MAC address as a suffix to the device name
|
|
|
|
|
-----------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Using ``name_add_mac_suffix`` allows the user to compile a single binary file to flash
|
|
|
|
|
many of the same device and they will all have unique names/hostnames.
|
|
|
|
|
Note that you will still need to create an individual YAML config file if you want to
|
|
|
|
|
OTA update the devices in the future.
|
|
|
|
|
|
2021-06-09 03:04:07 +02:00
|
|
|
|
|
|
|
|
|
.. _esphome-creators_project:
|
|
|
|
|
|
|
|
|
|
Project information
|
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
|
|
This allows creators to add the project name and version to the compiled code. It is currently only
|
|
|
|
|
exposed via the logger, mDNS and the device_info response via the native API. The format of the name
|
2021-06-09 08:56:15 +02:00
|
|
|
|
should be ``author_name.project_name``.
|
|
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
|
|
# Example configuration
|
|
|
|
|
esphome:
|
|
|
|
|
...
|
|
|
|
|
project:
|
|
|
|
|
name: "jesse.leds_party"
|
|
|
|
|
version: "1.0.0"
|
|
|
|
|
|
2021-06-09 03:04:07 +02:00
|
|
|
|
|
2018-06-03 12:50:44 +02:00
|
|
|
|
See Also
|
2018-08-24 22:44:01 +02:00
|
|
|
|
--------
|
2018-06-03 12:50:44 +02:00
|
|
|
|
|
2019-02-07 13:54:45 +01:00
|
|
|
|
- :ghedit:`Edit`
|