mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-01-13 20:11:53 +01:00
Merge branch 'current' into next
This commit is contained in:
commit
f48752cd9c
2
Doxygen
2
Doxygen
@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 1.13.3
|
PROJECT_NUMBER = 1.13.4
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
ESPHOME_PATH = ../esphome
|
ESPHOME_PATH = ../esphome
|
||||||
ESPHOME_REF = v1.13.3
|
ESPHOME_REF = v1.13.4
|
||||||
|
|
||||||
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png
|
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
1.13.3
|
1.13.4
|
@ -159,6 +159,18 @@ Release 1.13.3 - June 1
|
|||||||
- esphome: Fix medium fan speed :esphomepr:`595`
|
- esphome: Fix medium fan speed :esphomepr:`595`
|
||||||
- esphome: Fix dashboard for Py3 installs :esphomepr:`596`
|
- esphome: Fix dashboard for Py3 installs :esphomepr:`596`
|
||||||
|
|
||||||
|
Release 1.13.4 - June 3
|
||||||
|
-----------------------
|
||||||
|
|
||||||
|
- esphome: Add better esphomeyaml migration path :esphomepr:`600`
|
||||||
|
- esphome: Allow old remote_transmitter repeat schema :esphomepr:`601`
|
||||||
|
- esphome: Fix color wipe effect :esphomepr:`599`
|
||||||
|
- docs: Update integration.rst :docspr:`263` by :ghuser:`balk77`
|
||||||
|
- esphome: Fix hx711 :esphomepr:`602`
|
||||||
|
- esphome: Fix validation infinite loop with empty platform block :esphomepr:`598`
|
||||||
|
- esphome: Fix ADS1115 calculation :esphomepr:`606`
|
||||||
|
- esphome: ESP8266 connect fixes :esphomepr:`605`
|
||||||
|
|
||||||
All changes
|
All changes
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
@ -226,7 +226,8 @@ There are currently 4 types of variables:
|
|||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
This :ref:`Condition <config-condition>` checks if at least one client is connected to the ESPHome
|
This :ref:`Condition <config-condition>` checks if at least one client is connected to the ESPHome
|
||||||
native API.
|
native API. Please note client not only includes Home Assistant, but also ESPHome's OTA log output
|
||||||
|
if logs are shown remotely.
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
@ -97,6 +97,10 @@ Note that it can sometimes take some time for the first BLE broadcast to be rece
|
|||||||
Then just copy the address (``94:2B:FF:5C:91:61``) into a new ``sensor.xiaomi_miflora`` platform entry like
|
Then just copy the address (``94:2B:FF:5C:91:61``) into a new ``sensor.xiaomi_miflora`` platform entry like
|
||||||
in the configuration example at the top.
|
in the configuration example at the top.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
The ESPHome Xiaomi integration listens passively to packets the xiaomi device sends by itself.
|
||||||
|
ESPHome therefore has no impact on the battery life of the device.
|
||||||
|
|
||||||
See Also
|
See Also
|
||||||
--------
|
--------
|
||||||
|
@ -83,6 +83,10 @@ the process by pressing the grey bluetooth button on the back of the device.
|
|||||||
Then just copy the address (``7A:80:8E:19:36:BA``) into a new ``sensor.xiaomi_mijia`` platform entry like
|
Then just copy the address (``7A:80:8E:19:36:BA``) into a new ``sensor.xiaomi_mijia`` platform entry like
|
||||||
in the configuration example at the top.
|
in the configuration example at the top.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
The ESPHome Xiaomi integration listens passively to packets the xiaomi device sends by itself.
|
||||||
|
ESPHome therefore has no impact on the battery life of the device.
|
||||||
|
|
||||||
See Also
|
See Also
|
||||||
--------
|
--------
|
||||||
|
2
conf.py
2
conf.py
@ -72,7 +72,7 @@ author = 'Otto Winter'
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '1.13'
|
version = '1.13'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '1.13.3'
|
release = '1.13.4'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -259,6 +259,8 @@ And a docker compose file looks like this:
|
|||||||
image: esphome/esphome
|
image: esphome/esphome
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/config:rw
|
- ./:/config:rw
|
||||||
|
# Use local time for logging timestamps
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
network_mode: host
|
network_mode: host
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
|
@ -41,6 +41,7 @@ You guys are awesome!
|
|||||||
- Anders
|
- Anders
|
||||||
- Andrea Donno
|
- Andrea Donno
|
||||||
- Book of the Future
|
- Book of the Future
|
||||||
|
- Christer Frostmo
|
||||||
- Clayton
|
- Clayton
|
||||||
- Daan Damhuis
|
- Daan Damhuis
|
||||||
- Dattas Moonchaser
|
- Dattas Moonchaser
|
||||||
@ -73,7 +74,7 @@ that have made it into the `ESPHome organization's <https://github.com/esphome>`
|
|||||||
Author & Main Developer
|
Author & Main Developer
|
||||||
***********************
|
***********************
|
||||||
|
|
||||||
- `Otto Winter (@OttoWinter) <https://github.com/OttoWinter>`__ - 1747 contributions
|
- `Otto Winter (@OttoWinter) <https://github.com/OttoWinter>`__ - 1780 contributions
|
||||||
|
|
||||||
Contributors
|
Contributors
|
||||||
************
|
************
|
||||||
@ -103,11 +104,12 @@ Contributors
|
|||||||
- `TheJulianJES (@TheJulianJES) <https://github.com/TheJulianJES>`__ - 2 contributions
|
- `TheJulianJES (@TheJulianJES) <https://github.com/TheJulianJES>`__ - 2 contributions
|
||||||
- `Florian Gareis (@TheZoker) <https://github.com/TheZoker>`__ - 7 contributions
|
- `Florian Gareis (@TheZoker) <https://github.com/TheZoker>`__ - 7 contributions
|
||||||
- `Rick van Hattem (@WoLpH) <https://github.com/WoLpH>`__ - 1 contribution
|
- `Rick van Hattem (@WoLpH) <https://github.com/WoLpH>`__ - 1 contribution
|
||||||
|
- `Attila Darazs (@adarazs) <https://github.com/adarazs>`__ - 1 contribution
|
||||||
- `Johan Bloemberg (@aequitas) <https://github.com/aequitas>`__ - 6 contributions
|
- `Johan Bloemberg (@aequitas) <https://github.com/aequitas>`__ - 6 contributions
|
||||||
- `Anders (@ahd71) <https://github.com/ahd71>`__ - 1 contribution
|
- `Anders (@ahd71) <https://github.com/ahd71>`__ - 1 contribution
|
||||||
- `Adriaan Peeters (@apeeters) <https://github.com/apeeters>`__ - 3 contributions
|
- `Adriaan Peeters (@apeeters) <https://github.com/apeeters>`__ - 3 contributions
|
||||||
- `Florian Mösch (@badbadc0ffee) <https://github.com/badbadc0ffee>`__ - 4 contributions
|
- `Florian Mösch (@badbadc0ffee) <https://github.com/badbadc0ffee>`__ - 4 contributions
|
||||||
- `balk77 (@balk77) <https://github.com/balk77>`__ - 1 contribution
|
- `balk77 (@balk77) <https://github.com/balk77>`__ - 2 contributions
|
||||||
- `Paulus Schoutsen (@balloob) <https://github.com/balloob>`__ - 1 contribution
|
- `Paulus Schoutsen (@balloob) <https://github.com/balloob>`__ - 1 contribution
|
||||||
- `Patrik Hermansson (@bphermansson) <https://github.com/bphermansson>`__ - 1 contribution
|
- `Patrik Hermansson (@bphermansson) <https://github.com/bphermansson>`__ - 1 contribution
|
||||||
- `Brandon Davidson (@brandond) <https://github.com/brandond>`__ - 12 contributions
|
- `Brandon Davidson (@brandond) <https://github.com/brandond>`__ - 12 contributions
|
||||||
@ -127,7 +129,7 @@ Contributors
|
|||||||
- `escoand (@escoand) <https://github.com/escoand>`__ - 6 contributions
|
- `escoand (@escoand) <https://github.com/escoand>`__ - 6 contributions
|
||||||
- `Malte Franken (@exxamalte) <https://github.com/exxamalte>`__ - 2 contributions
|
- `Malte Franken (@exxamalte) <https://github.com/exxamalte>`__ - 2 contributions
|
||||||
- `Fabian Affolter (@fabaff) <https://github.com/fabaff>`__ - 10 contributions
|
- `Fabian Affolter (@fabaff) <https://github.com/fabaff>`__ - 10 contributions
|
||||||
- `gitolicious (@gitolicious) <https://github.com/gitolicious>`__ - 10 contributions
|
- `gitolicious (@gitolicious) <https://github.com/gitolicious>`__ - 11 contributions
|
||||||
- `The Gitter Badger (@gitter-badger) <https://github.com/gitter-badger>`__ - 1 contribution
|
- `The Gitter Badger (@gitter-badger) <https://github.com/gitter-badger>`__ - 1 contribution
|
||||||
- `Guillermo Ruffino (@glmnet) <https://github.com/glmnet>`__ - 4 contributions
|
- `Guillermo Ruffino (@glmnet) <https://github.com/glmnet>`__ - 4 contributions
|
||||||
- `Antoine GRÉA (@grea09) <https://github.com/grea09>`__ - 3 contributions
|
- `Antoine GRÉA (@grea09) <https://github.com/grea09>`__ - 3 contributions
|
||||||
@ -137,7 +139,7 @@ Contributors
|
|||||||
- `JbLb (@jblb) <https://github.com/jblb>`__ - 1 contribution
|
- `JbLb (@jblb) <https://github.com/jblb>`__ - 1 contribution
|
||||||
- `jcullen86 (@jcullen86) <https://github.com/jcullen86>`__ - 1 contribution
|
- `jcullen86 (@jcullen86) <https://github.com/jcullen86>`__ - 1 contribution
|
||||||
- `Joshua Dadswell (@jdads1) <https://github.com/jdads1>`__ - 1 contribution
|
- `Joshua Dadswell (@jdads1) <https://github.com/jdads1>`__ - 1 contribution
|
||||||
- `Jesse Hills (@jesserockz) <https://github.com/jesserockz>`__ - 6 contributions
|
- `Jesse Hills (@jesserockz) <https://github.com/jesserockz>`__ - 7 contributions
|
||||||
- `John Erik Halse (@johnerikhalse) <https://github.com/johnerikhalse>`__ - 1 contribution
|
- `John Erik Halse (@johnerikhalse) <https://github.com/johnerikhalse>`__ - 1 contribution
|
||||||
- `JonnyaiR (@jonnyair) <https://github.com/jonnyair>`__ - 2 contributions
|
- `JonnyaiR (@jonnyair) <https://github.com/jonnyair>`__ - 2 contributions
|
||||||
- `Kevin O'Rourke (@kevinior) <https://github.com/kevinior>`__ - 1 contribution
|
- `Kevin O'Rourke (@kevinior) <https://github.com/kevinior>`__ - 1 contribution
|
||||||
@ -146,7 +148,9 @@ Contributors
|
|||||||
- `Jeppe Ladefoged (@ladefoged81) <https://github.com/ladefoged81>`__ - 2 contributions
|
- `Jeppe Ladefoged (@ladefoged81) <https://github.com/ladefoged81>`__ - 2 contributions
|
||||||
- `Lazar Obradovic (@lobradov) <https://github.com/lobradov>`__ - 3 contributions
|
- `Lazar Obradovic (@lobradov) <https://github.com/lobradov>`__ - 3 contributions
|
||||||
- `Lewis Juggins (@lwis) <https://github.com/lwis>`__ - 1 contribution
|
- `Lewis Juggins (@lwis) <https://github.com/lwis>`__ - 1 contribution
|
||||||
|
- `Marc-Antoine Courteau (@macourteau) <https://github.com/macourteau>`__ - 1 contribution
|
||||||
- `Magnus Øverli (@magnusoverli) <https://github.com/magnusoverli>`__ - 1 contribution
|
- `Magnus Øverli (@magnusoverli) <https://github.com/magnusoverli>`__ - 1 contribution
|
||||||
|
- `Major Péter (@majorpeter) <https://github.com/majorpeter>`__ - 1 contribution
|
||||||
- `MeIchthys (@meichthys) <https://github.com/meichthys>`__ - 1 contribution
|
- `MeIchthys (@meichthys) <https://github.com/meichthys>`__ - 1 contribution
|
||||||
- `meijerwynand (@meijerwynand) <https://github.com/meijerwynand>`__ - 2 contributions
|
- `meijerwynand (@meijerwynand) <https://github.com/meijerwynand>`__ - 2 contributions
|
||||||
- `mjoshd (@mjoshd) <https://github.com/mjoshd>`__ - 2 contributions
|
- `mjoshd (@mjoshd) <https://github.com/mjoshd>`__ - 2 contributions
|
||||||
@ -165,6 +169,7 @@ Contributors
|
|||||||
- `Plácido Revilla (@placidorevilla) <https://github.com/placidorevilla>`__ - 2 contributions
|
- `Plácido Revilla (@placidorevilla) <https://github.com/placidorevilla>`__ - 2 contributions
|
||||||
- `Marcus Kempe (@plopp) <https://github.com/plopp>`__ - 1 contribution
|
- `Marcus Kempe (@plopp) <https://github.com/plopp>`__ - 1 contribution
|
||||||
- `DK (@poldim) <https://github.com/poldim>`__ - 1 contribution
|
- `DK (@poldim) <https://github.com/poldim>`__ - 1 contribution
|
||||||
|
- `Peter Tatrai (@ptatrai) <https://github.com/ptatrai>`__ - 1 contribution
|
||||||
- `Leandro Puerari (@puerari) <https://github.com/puerari>`__ - 1 contribution
|
- `Leandro Puerari (@puerari) <https://github.com/puerari>`__ - 1 contribution
|
||||||
- `puuu (@puuu) <https://github.com/puuu>`__ - 14 contributions
|
- `puuu (@puuu) <https://github.com/puuu>`__ - 14 contributions
|
||||||
- `Tommy Jonsson (@quazzie) <https://github.com/quazzie>`__ - 1 contribution
|
- `Tommy Jonsson (@quazzie) <https://github.com/quazzie>`__ - 1 contribution
|
||||||
@ -186,4 +191,4 @@ Contributors
|
|||||||
- `Vladimir Eremin (@yottatsa) <https://github.com/yottatsa>`__ - 1 contribution
|
- `Vladimir Eremin (@yottatsa) <https://github.com/yottatsa>`__ - 1 contribution
|
||||||
- `YuanL.Lee (@yuanl) <https://github.com/yuanl>`__ - 1 contribution
|
- `YuanL.Lee (@yuanl) <https://github.com/yuanl>`__ - 1 contribution
|
||||||
|
|
||||||
*This page was last updated Fri May 31 14:35:19 2019 UTC.*
|
*This page was last updated Tue Jun 4 16:45:34 2019 UTC.*
|
||||||
|
Loading…
Reference in New Issue
Block a user