mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-12-25 17:17:54 +01:00
Merge branch 'current' into next
This commit is contained in:
commit
72d455dcaa
2
Doxygen
2
Doxygen
@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
|
||||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 1.13.4
|
||||
PROJECT_NUMBER = 1.13.5
|
||||
|
||||
# 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
|
||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
||||
ESPHOME_PATH = ../esphome
|
||||
ESPHOME_REF = v1.13.4
|
||||
ESPHOME_REF = v1.13.5
|
||||
|
||||
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png
|
||||
|
||||
|
@ -1 +1 @@
|
||||
1.13.4
|
||||
1.13.5
|
@ -171,6 +171,25 @@ Release 1.13.4 - June 3
|
||||
- esphome: Fix ADS1115 calculation :esphomepr:`606`
|
||||
- esphome: ESP8266 connect fixes :esphomepr:`605`
|
||||
|
||||
Release 1.13.5 - June 8
|
||||
-----------------------
|
||||
|
||||
- esphome: Move ESPHome version define :esphomepr:`607`
|
||||
- esphome: Fix ForCondition time duration check :esphomepr:`610` by :ghuser:`ptatrai`
|
||||
- docs: Add timezone mapping to Docker compose. :docspr:`266` by :ghuser:`jeff-h`
|
||||
- esphome: DHT22 ignore invalid values :esphomepr:`614`
|
||||
- esphome: Template Cover don't auto-set current_operation :esphomepr:`612`
|
||||
- esphome: Fix Hass.io addon SSL :esphomepr:`613`
|
||||
- esphome: Fix remote_receiver always shows sony :esphomepr:`617`
|
||||
- esphome: Make ForCondition a component :esphomepr:`616`
|
||||
- esphome: Update docker base image to 1.8.0 :esphomepr:`618`
|
||||
- esphome: Fix integration sensor, add test :esphomepr:`619`
|
||||
- esphome: Fix sun default elevation :esphomepr:`620`
|
||||
- esphome: Update base image to 1.8.3 :esphomepr:`625`
|
||||
- esphome: Fix status binary sensor for MQTT :esphomepr:`628`
|
||||
- esphome: Work around ESP32 BLE issue :esphomepr:`626`
|
||||
- esphome: Work around ESP32 core WiFi Bug :esphomepr:`627`
|
||||
|
||||
All changes
|
||||
-----------
|
||||
|
||||
|
@ -32,8 +32,8 @@ Configuration variables:
|
||||
------------------------
|
||||
|
||||
- **name** (**Required**, string): The name for the climate.
|
||||
- **supports_cool** (*Optional*, boolean): Enables setting cool mode for this climate device. Defaults to `True`.
|
||||
- **supports_heat** (*Optional*, boolean): Enables setting cool heat for this climate device. Defaults to `True`.
|
||||
- **supports_cool** (*Optional*, boolean): Enables setting cool mode for this climate device. Defaults to ``True``.
|
||||
- **supports_heat** (*Optional*, boolean): Enables setting cool heat for this climate device. Defaults to ``True``.
|
||||
- **sensor** (*Optional*, :ref:`config-id`): The sensor that is used to measure the ambient
|
||||
temperature. This is only for reporting the current temperature in the frontend.
|
||||
- All other options from :ref:`Climate <config-climate>`.
|
||||
|
@ -32,8 +32,8 @@ Configuration variables:
|
||||
------------------------
|
||||
|
||||
- **name** (**Required**, string): The name for the climate.
|
||||
- **supports_cool** (*Optional*, boolean): Enables setting cool mode for this climate device. Defaults to `True`.
|
||||
- **supports_heat** (*Optional*, boolean): Enables setting cool heat for this climate device. Defaults to `True`.
|
||||
- **supports_cool** (*Optional*, boolean): Enables setting cool mode for this climate device. Defaults to ``True``.
|
||||
- **supports_heat** (*Optional*, boolean): Enables setting cool heat for this climate device. Defaults to ``True``.
|
||||
- **sensor** (*Optional*, :ref:`config-id`): The sensor that is used to measure the ambient
|
||||
temperature. This is only for reporting the current temperature in the frontend.
|
||||
- All other options from :ref:`Climate <config-climate>`.
|
||||
|
@ -92,16 +92,16 @@ Configuration options:
|
||||
|
||||
- **id** (**Required**, :ref:`config-id`): The ID of the template cover.
|
||||
- **state** (*Optional*, :ref:`templatable <config-templatable>`):
|
||||
The state to publish. One of ``OPEN``, ``CLOSED``.
|
||||
The state to publish. One of ``OPEN``, ``CLOSED``. If using a lambda, use ``COVER_OPEN`` or ``COVER_CLOSED``.
|
||||
- **position** (*Optional*, :ref:`templatable <config-templatable>`, float):
|
||||
The position to publish, from 0 (CLOSED) to 1.0 (OPEN)
|
||||
The position to publish, from 0.0 (CLOSED) to 1.0 (OPEN)
|
||||
- **current_operation** (*Optional*, :ref:`templatable <config-templatable>`, string):
|
||||
The current operation mode to publish. One of ``IDLE``, ``OPENING`` and ``CLOSING``.
|
||||
The current operation mode to publish. One of ``IDLE``, ``OPENING`` and ``CLOSING``. If using a lambda, use ``COVER_OPERATION_IDLE``, ``COVER_OPERATION_OPENING``, and ``COVER_OPERATION_CLOSING``.
|
||||
|
||||
.. note::
|
||||
|
||||
This action can also be written in lambdas:
|
||||
|
||||
L
|
||||
.. code-block:: cpp
|
||||
|
||||
id(template_cov).position = COVER_OPEN;
|
||||
|
2
conf.py
2
conf.py
@ -72,7 +72,7 @@ author = 'Otto Winter'
|
||||
# The short X.Y version.
|
||||
version = '1.13'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.13.4'
|
||||
release = '1.13.5'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -47,7 +47,6 @@ You guys are awesome!
|
||||
- Dattas Moonchaser
|
||||
- Dennis Münchgesang
|
||||
- DrZzs
|
||||
- E. Phenix
|
||||
- fabi
|
||||
- Franck Nijhof
|
||||
- Intermittent Technology
|
||||
@ -60,6 +59,7 @@ You guys are awesome!
|
||||
- Roman Priesol
|
||||
- Ryan
|
||||
- Ryan Bahm
|
||||
- starwolf73
|
||||
- Wojciech Bederski
|
||||
- Zoltán Jáki
|
||||
|
||||
@ -74,7 +74,7 @@ that have made it into the `ESPHome organization's <https://github.com/esphome>`
|
||||
Author & Main Developer
|
||||
***********************
|
||||
|
||||
- `Otto Winter (@OttoWinter) <https://github.com/OttoWinter>`__ - 1780 contributions
|
||||
- `Otto Winter (@OttoWinter) <https://github.com/OttoWinter>`__ - 1812 contributions
|
||||
|
||||
Contributors
|
||||
************
|
||||
@ -112,7 +112,7 @@ Contributors
|
||||
- `balk77 (@balk77) <https://github.com/balk77>`__ - 2 contributions
|
||||
- `Paulus Schoutsen (@balloob) <https://github.com/balloob>`__ - 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>`__ - 13 contributions
|
||||
- `brianrjones69 (@brianrjones69) <https://github.com/brianrjones69>`__ - 1 contribution
|
||||
- `chris-jennings (@chris-jennings) <https://github.com/chris-jennings>`__ - 1 contribution
|
||||
- `James Crook (@cooljimy84) <https://github.com/cooljimy84>`__ - 1 contribution
|
||||
@ -139,6 +139,7 @@ Contributors
|
||||
- `JbLb (@jblb) <https://github.com/jblb>`__ - 1 contribution
|
||||
- `jcullen86 (@jcullen86) <https://github.com/jcullen86>`__ - 1 contribution
|
||||
- `Joshua Dadswell (@jdads1) <https://github.com/jdads1>`__ - 1 contribution
|
||||
- `jeff-h (@jeff-h) <https://github.com/jeff-h>`__ - 1 contribution
|
||||
- `Jesse Hills (@jesserockz) <https://github.com/jesserockz>`__ - 7 contributions
|
||||
- `John Erik Halse (@johnerikhalse) <https://github.com/johnerikhalse>`__ - 1 contribution
|
||||
- `JonnyaiR (@jonnyair) <https://github.com/jonnyair>`__ - 2 contributions
|
||||
@ -177,6 +178,7 @@ Contributors
|
||||
- `Pär Stålberg (@rabbadab) <https://github.com/rabbadab>`__ - 1 contribution
|
||||
- `Richard Lewis (@richrd) <https://github.com/richrd>`__ - 2 contributions
|
||||
- `Robbie Page (@rorpage) <https://github.com/rorpage>`__ - 1 contribution
|
||||
- `Ryan Nazaretian (@ryannazaretian) <https://github.com/ryannazaretian>`__ - 1 contribution
|
||||
- `sethcohn (@sethcohn) <https://github.com/sethcohn>`__ - 1 contribution
|
||||
- `Emanuele Tessore (@setola) <https://github.com/setola>`__ - 1 contribution
|
||||
- `Abdelkader Boudih (@seuros) <https://github.com/seuros>`__ - 1 contribution
|
||||
@ -191,4 +193,4 @@ Contributors
|
||||
- `Vladimir Eremin (@yottatsa) <https://github.com/yottatsa>`__ - 1 contribution
|
||||
- `YuanL.Lee (@yuanl) <https://github.com/yuanl>`__ - 1 contribution
|
||||
|
||||
*This page was last updated Tue Jun 4 16:45:34 2019 UTC.*
|
||||
*This page was last updated Tue Jun 11 18:24:06 2019 UTC.*
|
||||
|
Loading…
Reference in New Issue
Block a user