Merge branch 'current' into beta

This commit is contained in:
Jesse Hills 2023-09-25 12:10:24 +13:00
commit 1b9b520416
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A
4 changed files with 12 additions and 8 deletions

View File

@ -86,7 +86,7 @@ The TM1637 has a similar API to the fully fledged :ref:`display-engine`, but it'
7-segment displays don't have a concept of individual pixels. In the lambda you're passed a variable called ``it``
as with all other displays. In this case however, ``it`` is a TM1637 instance (see API Reference).
The most basic operation with the TM1637 is wiring a simple number to the screen as in the configuration example
The most basic operation with the TM1637 is writing a simple number to the screen as in the configuration example
at the top of this page. But even though you're passing in a string (here ``"0123"``), ESPHome converts it
into a representation that the TM1637 can understand: The exact pixels that should be turned on. And of course,
not all characters can be represented. You can see a full list of characters :ref:`at the MAX7219 docs <display-max7219_characters>`.

View File

@ -150,6 +150,10 @@ Configuration variables:
kilo watt hours. All options from :ref:`Sensor <config-sensor>`.
- **inverter_module_temp** (*Optional*): Use the inverter module temperature value of the sensor in
degree celsius. All options from :ref:`Sensor <config-sensor>`.
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the
sensor. Defaults to ``10s``.
- **address** (*Optional*, int): The address of the sensor if multiple sensors are attached to
the same UART bus. You will need to set the address of each device manually. Defaults to ``1``.
See Also
--------

View File

@ -30,17 +30,17 @@ The :ref:`I²C Bus <i2c>` is required to be set up in your configuration for thi
pm_10_0:
name: "PM10.0"
pmc_0_3:
name: "PMC <0.3µm"
name: "PMC >0.3µm"
pmc_0_5:
name: "PMC <0.5µm"
name: "PMC >0.5µm"
pmc_1_0:
name: "PMC <1µm"
name: "PMC >1µm"
pmc_2_5:
name: "PMC <2.5µm"
name: "PMC >2.5µm"
pmc_5_0:
name: "PMC <5µm"
name: "PMC >5µm"
pmc_10_0:
name: "PMC <10µm"
name: "PMC >10µm"
Configuration variables:
------------------------

View File

@ -82,7 +82,7 @@ in ``/config/esphome/garage-door.yaml``.
command line is not very straightforward, but it's possible. To do that,
install Home Assistant's SSH addon, configure a username and a password,
and disable `Protection Mode` (please assess the risks you take with that).
Then, for example to access the logs form a device through an SSH client,
Then, for example to access the logs from a device through an SSH client,
log in, and you can use a command like
`docker exec -it addon_15ef4d2f_esphome esphome logs /config/esphome/garage-door.yaml`.
See :doc:`getting_started_command_line` for more.