mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-16 10:55:21 +01:00
commit
ef560f1d93
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 = 2022.6.0
|
||||
PROJECT_NUMBER = 2022.6.1
|
||||
|
||||
# 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 = 2022.6.0
|
||||
ESPHOME_REF = 2022.6.1
|
||||
|
||||
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify
|
||||
|
||||
|
@ -1 +1 @@
|
||||
2022.6.0
|
||||
2022.6.1
|
@ -81,6 +81,13 @@ Basically, they decided to upgrade the ``!include`` yaml "directive" to allow va
|
||||
Now while this is probably not the best example, the variables act as ``substitutions``
|
||||
and can be used anywhere in the underlying yaml file and can very much DRY out your configurations.
|
||||
|
||||
Release 2022.6.1 - June 18
|
||||
--------------------------
|
||||
|
||||
- Setup the mute pin if configured :esphomepr:`3568` by :ghuser:`jesserockz`
|
||||
- Bugfix for ExternalRAMAllocator copy constructor :esphomepr:`3571` by :ghuser:`bnw`
|
||||
- Media Player: added triggers :esphomepr:`3576` by :ghuser:`dudanov`
|
||||
|
||||
Breaking Changes
|
||||
----------------
|
||||
|
||||
|
@ -118,6 +118,67 @@ Configuration variables:
|
||||
|
||||
**volume** (**Required**, percentage): The volume to set the media player to.
|
||||
|
||||
.. _media_player-on_state_trigger:
|
||||
|
||||
``media_player.on_state`` Trigger
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
This trigger is activated each time the state of the media player is updated
|
||||
(for example, if the player is stop playing audio or received some command).
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
media_player:
|
||||
- platform: i2s_audio # or any other platform
|
||||
# ...
|
||||
on_state:
|
||||
- logger.log: "State updated!"
|
||||
|
||||
.. _media_player-on_play_trigger:
|
||||
|
||||
``media_player.on_play`` Trigger
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
This trigger is activated each time then the media player is started playing.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
media_player:
|
||||
- platform: i2s_audio # or any other platform
|
||||
# ...
|
||||
on_play:
|
||||
- logger.log: "Playback started!"
|
||||
|
||||
.. _media_player-on_pause_trigger:
|
||||
|
||||
``media_player.on_pause`` Trigger
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
This trigger is activated every time the media player pauses playback.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
media_player:
|
||||
- platform: i2s_audio # or any other platform
|
||||
# ...
|
||||
on_pause:
|
||||
- logger.log: "Playback paused!"
|
||||
|
||||
.. _media_player-on_idle_trigger:
|
||||
|
||||
``media_player.on_idle`` Trigger
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
This trigger is activated every time the media player finishes playing.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
media_player:
|
||||
- platform: i2s_audio # or any other platform
|
||||
# ...
|
||||
on_idle:
|
||||
- logger.log: "Playback finished!"
|
||||
|
||||
See Also
|
||||
--------
|
||||
|
||||
|
2
conf.py
2
conf.py
@ -68,7 +68,7 @@ author = "ESPHome"
|
||||
# The short X.Y version.
|
||||
version = "2022.6"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "2022.6.0"
|
||||
release = "2022.6.1"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -108,6 +108,7 @@ Contributors
|
||||
- `Branimir Lambov (@blambov) <https://github.com/blambov>`__
|
||||
- `Jim Ekman (@blejdfist) <https://github.com/blejdfist>`__
|
||||
- `Bob (@Bmooij) <https://github.com/Bmooij>`__
|
||||
- `Benjamin Klotz (@bnw) <https://github.com/bnw>`__
|
||||
- `Mauricio Bonani (@bonanitech) <https://github.com/bonanitech>`__
|
||||
- `Casey Olson (@bookcasey) <https://github.com/bookcasey>`__
|
||||
- `BoukeHaarsma23 (@BoukeHaarsma23) <https://github.com/BoukeHaarsma23>`__
|
||||
@ -351,7 +352,6 @@ Contributors
|
||||
- `imgbot[bot] (@imgbot[bot]) <https://github.com/imgbot[bot]>`__
|
||||
- `ImSorryButWho (@ImSorryButWho) <https://github.com/ImSorryButWho>`__
|
||||
- `Lorenzo Ortiz (@Infinitte) <https://github.com/Infinitte>`__
|
||||
- `Samir El Benna (@ingbenna) <https://github.com/ingbenna>`__
|
||||
- `irtimaled (@irtimaled) <https://github.com/irtimaled>`__
|
||||
- `Ingo Theiss (@itn3rd77) <https://github.com/itn3rd77>`__
|
||||
- `Ivan Shvedunov (@ivan4th) <https://github.com/ivan4th>`__
|
||||
@ -548,7 +548,6 @@ Contributors
|
||||
- `Sam Hughes (@MrEditor97) <https://github.com/MrEditor97>`__
|
||||
- `Mariusz Kryński (@mrk-its) <https://github.com/mrk-its>`__
|
||||
- `Michael Davidson (@MrMDavidson) <https://github.com/MrMDavidson>`__
|
||||
- `Ryan Matthews (@mrrsm) <https://github.com/mrrsm>`__
|
||||
- `MrZetor (@MrZetor) <https://github.com/MrZetor>`__
|
||||
- `mtl010957 (@mtl010957) <https://github.com/mtl010957>`__
|
||||
- `Murilo (@murilobaliego) <https://github.com/murilobaliego>`__
|
||||
@ -705,7 +704,6 @@ Contributors
|
||||
- `RubyBailey (@RubyBailey) <https://github.com/RubyBailey>`__
|
||||
- `rweather (@rweather) <https://github.com/rweather>`__
|
||||
- `ryanalden (@ryanalden) <https://github.com/ryanalden>`__
|
||||
- `Ryan Nazaretian (@ryannazaretian) <https://github.com/ryannazaretian>`__
|
||||
- `Silvio (@s1lvi0) <https://github.com/s1lvi0>`__
|
||||
- `Jan Čermák (@sairon) <https://github.com/sairon>`__
|
||||
- `sascha lammers (@sascha432) <https://github.com/sascha432>`__
|
||||
@ -811,7 +809,6 @@ Contributors
|
||||
- `TVDLoewe (@TVDLoewe) <https://github.com/TVDLoewe>`__
|
||||
- `Thorsten von Eicken (@tve) <https://github.com/tve>`__
|
||||
- `Tyler Menezes (@tylermenezes) <https://github.com/tylermenezes>`__
|
||||
- `ukewea (@ukewea) <https://github.com/ukewea>`__
|
||||
- `Unai (@unaiur) <https://github.com/unaiur>`__
|
||||
- `UT2UH (@UT2UH) <https://github.com/UT2UH>`__
|
||||
- `Vc (@Valcob) <https://github.com/Valcob>`__
|
||||
@ -856,4 +853,4 @@ Contributors
|
||||
- `Michael Labuschke (@zigman79) <https://github.com/zigman79>`__
|
||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||
|
||||
*This page was last updated June 16, 2022.*
|
||||
*This page was last updated June 18, 2022.*
|
||||
|
Loading…
Reference in New Issue
Block a user