mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-02-28 03:41:57 +01:00
Merge branch 'current' into next
This commit is contained in:
commit
56a7d349ff
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
/changelog/2022.12.4.html /changelog/2022.12.0.html 301
|
/changelog/2022.12.4.html /changelog/2022.12.0.html 301
|
||||||
/components/display/ili9341.html /components/display/ili9xxx.html 301
|
/components/display/ili9341.html /components/display/ili9xxx.html 301
|
||||||
|
/components/sensor/mmc5063.html /components/sensor/mmc5603.html 301
|
||||||
|
|
||||||
/cookbook/brilliant-mirabella-genio-smart-plugs.html https://devices.esphome.io/devices/Mirabella-Genio-Wi-Fi-1-USB 301
|
/cookbook/brilliant-mirabella-genio-smart-plugs.html https://devices.esphome.io/devices/Mirabella-Genio-Wi-Fi-1-USB 301
|
||||||
/cookbook/zemismart-rgbw-downlights.html https://devices.esphome.io/devices/Zemismart-LED-RGBWW-Downlight 301
|
/cookbook/zemismart-rgbw-downlights.html https://devices.esphome.io/devices/Zemismart-LED-RGBWW-Downlight 301
|
||||||
|
@ -22,7 +22,7 @@ Voice Assistant
|
|||||||
|
|
||||||
This year is the Year of the Voice for Home Assistant, and ESPHome is charging ahead with this in mind.
|
This year is the Year of the Voice for Home Assistant, and ESPHome is charging ahead with this in mind.
|
||||||
We've added a new :doc:`/components/voice_assistant` component that allows you to use ESPHome devices as an input
|
We've added a new :doc:`/components/voice_assistant` component that allows you to use ESPHome devices as an input
|
||||||
for `assist <https://www.home-assistant.io/docs/assist/>`__ in Home Assistant.
|
for `assist <https://www.home-assistant.io/docs/assist/>`__ in Home Assistant **2023.5 or later**.
|
||||||
|
|
||||||
With this also comes preliminary :doc:`microphone </components/microphone/index>` support, which has been built in a way that multiple
|
With this also comes preliminary :doc:`microphone </components/microphone/index>` support, which has been built in a way that multiple
|
||||||
components, like ``voice_assistant`` can request start / stop of the microphone and get the data. We
|
components, like ``voice_assistant`` can request start / stop of the microphone and get the data. We
|
||||||
@ -42,13 +42,19 @@ Home Assistant is hosting a live stream all about the Year of the Voice - Chapte
|
|||||||
Keith joins Nabu Casa
|
Keith joins Nabu Casa
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
Nabu Casa is pleased to annouce that long time contributor Keith Burzinski (:ghuser:`kbx81`) is joining the
|
Nabu Casa is pleased to announce that long time contributor Keith Burzinski (:ghuser:`kbx81`) is joining the
|
||||||
team as a full time developer to help out on ESPHome. Keith created the :doc:`/components/sprinkler`,
|
team as a full time developer to help out on ESPHome. Keith created the :doc:`/components/sprinkler`,
|
||||||
:doc:`/components/climate/thermostat`, a bunch of the ``ssd`` display components and a few other components
|
:doc:`/components/climate/thermostat`, a bunch of the ``ssd`` display components and a few other components
|
||||||
as well as fixing many bug along the way. I expect his house climate and garden area are kept well in line.
|
as well as fixing many bug along the way. I expect his house climate and garden area are kept well in line.
|
||||||
|
|
||||||
Looking forward to working with you Keith.
|
Looking forward to working with you Keith.
|
||||||
|
|
||||||
|
Release 2023.4.1 - April 24
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
- fix flip_x :esphomepr:`4727` by :ghuser:`ssieb`
|
||||||
|
- Use proper schema for delta filter :esphomepr:`4723` by :ghuser:`jesserockz`
|
||||||
|
|
||||||
Breaking Changes
|
Breaking Changes
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -22,13 +22,13 @@ to some pins on your board and the baud rate set to 9600.
|
|||||||
|
|
||||||
# Example configuration entry
|
# Example configuration entry
|
||||||
uart:
|
uart:
|
||||||
- id: uart1
|
- id: gw_uart
|
||||||
baud_rate: 9600
|
baud_rate: 9600
|
||||||
tx_pin: GPIO1
|
tx_pin: GPIO1
|
||||||
rx_pin: GPIO3
|
rx_pin: GPIO3
|
||||||
|
|
||||||
modbus:
|
modbus:
|
||||||
uart_id: uart1
|
uart_id: gw_uart
|
||||||
flow_control_pin: GPIO4
|
flow_control_pin: GPIO4
|
||||||
|
|
||||||
sensor:
|
sensor:
|
||||||
|
@ -24,14 +24,14 @@ to some pins on your board and the baud rate set to 9600.
|
|||||||
|
|
||||||
# Example configuration entry
|
# Example configuration entry
|
||||||
uart:
|
uart:
|
||||||
- id: uart1
|
- id: modbus_uart
|
||||||
baud_rate: 9600
|
baud_rate: 9600
|
||||||
tx_pin: GPIO1
|
tx_pin: GPIO1
|
||||||
rx_pin: GPIO3
|
rx_pin: GPIO3
|
||||||
|
|
||||||
|
|
||||||
modbus:
|
modbus:
|
||||||
uart_id: uart1
|
uart_id: modbus_uart
|
||||||
flow_control_pin: GPIO4
|
flow_control_pin: GPIO4
|
||||||
|
|
||||||
sensor:
|
sensor:
|
||||||
|
@ -25,7 +25,6 @@ Use of hardware UART pins is highly recommended, in order to support the out-of-
|
|||||||
|
|
||||||
# Example configuration entry
|
# Example configuration entry
|
||||||
uart:
|
uart:
|
||||||
id: uart1
|
|
||||||
tx_pin: REPLACEME
|
tx_pin: REPLACEME
|
||||||
rx_pin: REPLACEME
|
rx_pin: REPLACEME
|
||||||
baud_rate: 256000
|
baud_rate: 256000
|
||||||
|
@ -150,6 +150,7 @@ configuration. See :ref:`Number <config-number>` for more information.
|
|||||||
- platform: template
|
- platform: template
|
||||||
name: Servo Control
|
name: Servo Control
|
||||||
min_value: -100
|
min_value: -100
|
||||||
|
initial_value: 0
|
||||||
max_value: 100
|
max_value: 100
|
||||||
step: 1
|
step: 1
|
||||||
optimistic: true
|
optimistic: true
|
||||||
|
@ -135,6 +135,7 @@ Contributors
|
|||||||
- `beaudeanadams (@beaudeanadams) <https://github.com/beaudeanadams>`__
|
- `beaudeanadams (@beaudeanadams) <https://github.com/beaudeanadams>`__
|
||||||
- `Benjamin Freeman (@Beetix) <https://github.com/Beetix>`__
|
- `Benjamin Freeman (@Beetix) <https://github.com/Beetix>`__
|
||||||
- `beikeland (@beikeland) <https://github.com/beikeland>`__
|
- `beikeland (@beikeland) <https://github.com/beikeland>`__
|
||||||
|
- `Bella Coola (@BellaCoola) <https://github.com/BellaCoola>`__
|
||||||
- `Ben-Schwabe (@Ben-Schwabe) <https://github.com/Ben-Schwabe>`__
|
- `Ben-Schwabe (@Ben-Schwabe) <https://github.com/Ben-Schwabe>`__
|
||||||
- `Ben Hoff (@benhoff) <https://github.com/benhoff>`__
|
- `Ben Hoff (@benhoff) <https://github.com/benhoff>`__
|
||||||
- `Benno Pütz (@bennop) <https://github.com/bennop>`__
|
- `Benno Pütz (@bennop) <https://github.com/bennop>`__
|
||||||
@ -203,7 +204,6 @@ Contributors
|
|||||||
- `Cellie (@CelliesProjects) <https://github.com/CelliesProjects>`__
|
- `Cellie (@CelliesProjects) <https://github.com/CelliesProjects>`__
|
||||||
- `Chris Feenstra (@cfeenstra1024) <https://github.com/cfeenstra1024>`__
|
- `Chris Feenstra (@cfeenstra1024) <https://github.com/cfeenstra1024>`__
|
||||||
- `cg089 (@cg089) <https://github.com/cg089>`__
|
- `cg089 (@cg089) <https://github.com/cg089>`__
|
||||||
- `Kostas Chatzikokolakis (@chatziko) <https://github.com/chatziko>`__
|
|
||||||
- `Audric Schiltknecht (@chemicalstorm) <https://github.com/chemicalstorm>`__
|
- `Audric Schiltknecht (@chemicalstorm) <https://github.com/chemicalstorm>`__
|
||||||
- `chris-jennings (@chris-jennings) <https://github.com/chris-jennings>`__
|
- `chris-jennings (@chris-jennings) <https://github.com/chris-jennings>`__
|
||||||
- `Chris (@chrismaki) <https://github.com/chrismaki>`__
|
- `Chris (@chrismaki) <https://github.com/chrismaki>`__
|
||||||
@ -618,7 +618,6 @@ Contributors
|
|||||||
- `Karl0ss (@karl0ss) <https://github.com/karl0ss>`__
|
- `Karl0ss (@karl0ss) <https://github.com/karl0ss>`__
|
||||||
- `Karol Zlot (@karolzlot) <https://github.com/karolzlot>`__
|
- `Karol Zlot (@karolzlot) <https://github.com/karolzlot>`__
|
||||||
- `Kattni (@kattni) <https://github.com/kattni>`__
|
- `Kattni (@kattni) <https://github.com/kattni>`__
|
||||||
- `Krasimir Nedelchev (@kaykayehnn) <https://github.com/kaykayehnn>`__
|
|
||||||
- `Krzysztof Białek (@kbialek) <https://github.com/kbialek>`__
|
- `Krzysztof Białek (@kbialek) <https://github.com/kbialek>`__
|
||||||
- `Keilin Bickar (@kbickar) <https://github.com/kbickar>`__
|
- `Keilin Bickar (@kbickar) <https://github.com/kbickar>`__
|
||||||
- `Keith Burzinski (@kbx81) <https://github.com/kbx81>`__
|
- `Keith Burzinski (@kbx81) <https://github.com/kbx81>`__
|
||||||
@ -640,7 +639,6 @@ Contributors
|
|||||||
- `Marcus Klein (@kleini) <https://github.com/kleini>`__
|
- `Marcus Klein (@kleini) <https://github.com/kleini>`__
|
||||||
- `Kevin Lewis (@kll) <https://github.com/kll>`__
|
- `Kevin Lewis (@kll) <https://github.com/kll>`__
|
||||||
- `KNXBroker (@KNXBroker) <https://github.com/KNXBroker>`__
|
- `KNXBroker (@KNXBroker) <https://github.com/KNXBroker>`__
|
||||||
- `Koen Vervloesem (@koenvervloesem) <https://github.com/koenvervloesem>`__
|
|
||||||
- `kokangit (@kokangit) <https://github.com/kokangit>`__
|
- `kokangit (@kokangit) <https://github.com/kokangit>`__
|
||||||
- `Petr Vraník (@konikvranik) <https://github.com/konikvranik>`__
|
- `Petr Vraník (@konikvranik) <https://github.com/konikvranik>`__
|
||||||
- `Kevin Pelzel (@kpelzel) <https://github.com/kpelzel>`__
|
- `Kevin Pelzel (@kpelzel) <https://github.com/kpelzel>`__
|
||||||
@ -908,6 +906,7 @@ Contributors
|
|||||||
- `Marc Seeger (@rb2k) <https://github.com/rb2k>`__
|
- `Marc Seeger (@rb2k) <https://github.com/rb2k>`__
|
||||||
- `rbaron (@rbaron) <https://github.com/rbaron>`__
|
- `rbaron (@rbaron) <https://github.com/rbaron>`__
|
||||||
- `Robert Cambridge (@rcambrj) <https://github.com/rcambrj>`__
|
- `Robert Cambridge (@rcambrj) <https://github.com/rcambrj>`__
|
||||||
|
- `Russell Cloran (@rcloran) <https://github.com/rcloran>`__
|
||||||
- `Rebbe Pod (@RebbePod) <https://github.com/RebbePod>`__
|
- `Rebbe Pod (@RebbePod) <https://github.com/RebbePod>`__
|
||||||
- `reddn (@reddn) <https://github.com/reddn>`__
|
- `reddn (@reddn) <https://github.com/reddn>`__
|
||||||
- `Alex (@redwngsrul) <https://github.com/redwngsrul>`__
|
- `Alex (@redwngsrul) <https://github.com/redwngsrul>`__
|
||||||
@ -915,7 +914,6 @@ Contributors
|
|||||||
- `Regev Brody (@regevbr) <https://github.com/regevbr>`__
|
- `Regev Brody (@regevbr) <https://github.com/regevbr>`__
|
||||||
- `Alex Reid (@reidprojects) <https://github.com/reidprojects>`__
|
- `Alex Reid (@reidprojects) <https://github.com/reidprojects>`__
|
||||||
- `RenierM26 (@RenierM26) <https://github.com/RenierM26>`__
|
- `RenierM26 (@RenierM26) <https://github.com/RenierM26>`__
|
||||||
- `Reuben (@reubn) <https://github.com/reubn>`__
|
|
||||||
- `Robin Pronk (@rfpronk) <https://github.com/rfpronk>`__
|
- `Robin Pronk (@rfpronk) <https://github.com/rfpronk>`__
|
||||||
- `Robert Gabrielson (@rgabrielson11) <https://github.com/rgabrielson11>`__
|
- `Robert Gabrielson (@rgabrielson11) <https://github.com/rgabrielson11>`__
|
||||||
- `Rafael Goes (@rgriffogoes) <https://github.com/rgriffogoes>`__
|
- `Rafael Goes (@rgriffogoes) <https://github.com/rgriffogoes>`__
|
||||||
@ -931,7 +929,6 @@ Contributors
|
|||||||
- `rnauber (@rnauber) <https://github.com/rnauber>`__
|
- `rnauber (@rnauber) <https://github.com/rnauber>`__
|
||||||
- `Rob Deutsch (@rob-deutsch) <https://github.com/rob-deutsch>`__
|
- `Rob Deutsch (@rob-deutsch) <https://github.com/rob-deutsch>`__
|
||||||
- `Robert Alfaro (@robert-alfaro) <https://github.com/robert-alfaro>`__
|
- `Robert Alfaro (@robert-alfaro) <https://github.com/robert-alfaro>`__
|
||||||
- `Rob Gridley (@robgridley) <https://github.com/robgridley>`__
|
|
||||||
- `Robinson1999 (@Robinson1999) <https://github.com/Robinson1999>`__
|
- `Robinson1999 (@Robinson1999) <https://github.com/Robinson1999>`__
|
||||||
- `RoboMagus (@RoboMagus) <https://github.com/RoboMagus>`__
|
- `RoboMagus (@RoboMagus) <https://github.com/RoboMagus>`__
|
||||||
- `Roeland Lutters (@Roeland54) <https://github.com/Roeland54>`__
|
- `Roeland Lutters (@Roeland54) <https://github.com/Roeland54>`__
|
||||||
@ -1110,6 +1107,7 @@ Contributors
|
|||||||
- `Ian Wells (@wellsi) <https://github.com/wellsi>`__
|
- `Ian Wells (@wellsi) <https://github.com/wellsi>`__
|
||||||
- `wifwucite (@wifwucite) <https://github.com/wifwucite>`__
|
- `wifwucite (@wifwucite) <https://github.com/wifwucite>`__
|
||||||
- `wilberforce (@wilberforce) <https://github.com/wilberforce>`__
|
- `wilberforce (@wilberforce) <https://github.com/wilberforce>`__
|
||||||
|
- `wildekek (@wildekek) <https://github.com/wildekek>`__
|
||||||
- `Wingman3434 (@Wingman3434) <https://github.com/Wingman3434>`__
|
- `Wingman3434 (@Wingman3434) <https://github.com/Wingman3434>`__
|
||||||
- `Emil Hesslow (@WizKid) <https://github.com/WizKid>`__
|
- `Emil Hesslow (@WizKid) <https://github.com/WizKid>`__
|
||||||
- `WJCarpenter (@wjcarpenter) <https://github.com/wjcarpenter>`__
|
- `WJCarpenter (@wjcarpenter) <https://github.com/wjcarpenter>`__
|
||||||
@ -1139,4 +1137,4 @@ Contributors
|
|||||||
- `Zack Barett (@zsarnett) <https://github.com/zsarnett>`__
|
- `Zack Barett (@zsarnett) <https://github.com/zsarnett>`__
|
||||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||||
|
|
||||||
*This page was last updated April 20, 2023.*
|
*This page was last updated April 24, 2023.*
|
||||||
|
Loading…
Reference in New Issue
Block a user