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
66f9e784ca
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.14.0
|
||||
PROJECT_NUMBER = 1.14.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 = v1.14.0
|
||||
ESPHOME_REF = v1.14.1
|
||||
|
||||
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png
|
||||
|
||||
|
@ -1 +1 @@
|
||||
1.14.0
|
||||
1.14.1
|
@ -128,6 +128,19 @@ Breaking Changes
|
||||
- For :doc:`pcf8574 </components/pcf8574>`, the ``INPUT_PULLUP`` option has been removed and replaced
|
||||
with ``INPUT`` (:esphomepr:`828`, :doc:`docs </components/pcf8574>`).
|
||||
|
||||
Release 1.14.1 - November 2
|
||||
---------------------------
|
||||
|
||||
- docs: DIY Examples page :docspr:`395`
|
||||
- esphome: refactored xiaomi ble data parsing :esphomepr:`823` by :ghuser:`Alex9779`
|
||||
- docs: Document UART stop_bits :docspr:`396`
|
||||
- esphome: Fix wizard mkdir :esphomepr:`824`
|
||||
- esphome: Move native API enums to new namespace :esphomepr:`825`
|
||||
- esphome: Fix update-all input in dashboard :esphomepr:`826`
|
||||
- esphome: Remove PCF8574 input_pullup mode and cleanup :esphomepr:`828`
|
||||
- esphome: Add servo missing restore option to codegen :esphomepr:`829`
|
||||
- docs: Document missing servo restore option :docspr:`398`
|
||||
|
||||
Notable Changes & New Features
|
||||
------------------------------
|
||||
|
||||
|
2
conf.py
2
conf.py
@ -72,7 +72,7 @@ author = 'Otto Winter'
|
||||
# The short X.Y version.
|
||||
version = '1.14'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.14.0'
|
||||
release = '1.14.1'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -23,54 +23,54 @@ unless it's truly exceptional, etc.
|
||||
Blog Posts & Videos
|
||||
-------------------
|
||||
|
||||
- Ultrasonic Salt Level Sensor: https://adonno.com/salt-level-sensor/
|
||||
- Smart $2 doorbell: https://frenck.dev/diy-smart-doorbell-for-just-2-dollar/
|
||||
- Cheap Car Presence Detection: https://adonno.com/car-presence-position-detection/
|
||||
- Calibrating Power Sensors: https://frenck.dev/calibrating-an-esphome-flashed-power-plug/
|
||||
- Count Water Bottles: https://vigonotion.com/blog/monitor-remainding-water-bottles/
|
||||
- ESPHome Weather Station with Nextion display: https://github.com/bruxy70/Home-Assistant-ESPHome-Weather-Station
|
||||
- ESPHome Wall Mount with Nextion Display: https://github.com/Andoramb/Nextion-wall-mount (https://www.youtube.com/watch?v=TL8wZNnS4jI)
|
||||
- Sonoff 4CH Irrigation Controller with Nextion Display: https://github.com/bruxy70/Irrigation-with-display
|
||||
- Automated Bathroom Ventilation: https://www.youtube.com/watch?v=weBDnmrQYOs
|
||||
- ESPHome MP3 Sound Machine: https://selfhostedhome.com/esp8266-mp3-sound-machine/
|
||||
- ESP32 Camera+ESP8266 PIR: https://www.dopebuild.com/i-am-sorry-dave-i-am-unable-to-do-that/
|
||||
- Detecting Sound with ESP8266: https://thibmaek.com/post/detecting-sound-level-using-esp8266-and-esphome
|
||||
- `Ultrasonic Salt Level Sensor <https://adonno.com/salt-level-sensor/>`__ by `Adonno <https://adonno.com>`__
|
||||
- `Smart $2 doorbell <https://frenck.dev/diy-smart-doorbell-for-just-2-dollar/>`__ by `Frenck <https://frenck.dev>`__
|
||||
- `Cheap Car Presence Detection <https://adonno.com/car-presence-position-detection/>`__ by `Adonno <https://adonno.com>`__
|
||||
- `Calibrating Power Sensors <https://frenck.dev/calibrating-an-esphome-flashed-power-plug/>`__ by `Frenck <https://frenck.dev>`__
|
||||
- `Count Water Bottles <https://vigonotion.com/blog/monitor-remainding-water-bottles/>`__ by `vigonotion <https://vigonotion.com>`__
|
||||
- `ESPHome Weather Station with Nextion display <https://github.com/bruxy70/Home-Assistant-ESPHome-Weather-Station>`__ by :ghuser:`bruxy70`
|
||||
- `ESPHome Wall Mount with Nextion Display <https://github.com/Andoramb/Nextion-wall-mount>`__ by :ghuser:`Andoramb` (`video <https://www.youtube.com/watch?v=TL8wZNnS4jI>`__)
|
||||
- `Sonoff 4CH Irrigation Controller with Nextion Display <https://github.com/bruxy70/Irrigation-with-display>`__ by :ghuser:`bruxy70`
|
||||
- `Automated Bathroom Ventilation <https://www.youtube.com/watch?v=weBDnmrQYOs>`__ by `Intermittent Technology <https://intermit.tech>`__
|
||||
- `ESPHome MP3 Sound Machine <https://selfhostedhome.com/esp8266-mp3-sound-machine/>`__ by `Self Hosted Home <https://selfhostedhome.com>`__
|
||||
- `ESP32 Camera+ESP8266 PIR <https://www.dopebuild.com/i-am-sorry-dave-i-am-unable-to-do-that/>`__ by `Dave Richer <https://dopebuild.com/>`__
|
||||
- `Detecting Sound with ESP8266 <https://thibmaek.com/post/detecting-sound-level-using-esp8266-and-esphome>`__ by `Thibault Maekelbergh <https://thibmaek.com>`__
|
||||
|
||||
Custom Components & Code
|
||||
------------------------
|
||||
|
||||
- Custom RGBW Light Output emulating color temperature support: https://gist.github.com/madjam002/31cc88640efa370630fed6914fa4eb7f
|
||||
- Custom ESPHome native API to influxdb python script: https://gist.github.com/fpletz/d071c72e45d17ba274fd61ca7a465033#file-esphome-sensor-influxdb-py
|
||||
- Custom Electra HVAC climate component: https://gist.github.com/liads/c702fd4b8529991af9cd52d03b694814
|
||||
- Custom D6T Thermal Sensor: https://gist.github.com/mKeRix/4fc553574af0a2d8682734695160b859
|
||||
- Custom 斐讯DC1 Mains Socket Component (chinese): https://github.com/Samuel-0-0/phicomm_dc1-esphome
|
||||
- Custom Component for Tuya PIR sensors: https://github.com/brandond/esphome-tuya_pir
|
||||
- DIY Whole Home Power Monitoring with ATM90E32AS chip: https://www.youtube.com/watch?v=BOgy6QbfeZk
|
||||
- SK6812 Addressable Light as Display Matrix: https://github.com/rnauber/ESPHomeMatrixLED
|
||||
- Custom MAX7219 Matrix Display Component: https://github.com/ASMfreaK/esphome_max7219
|
||||
- Custom ESPHome Roomba Component: https://github.com/mannkind/ESPHomeRoombaComponent
|
||||
- Custom Real-Time LED strip music visualization: https://github.com/zhujisheng/audio-reactive-led-strip
|
||||
- Custom ITHO Fan control: https://github.com/CoMPaTech/esphome_c1101
|
||||
- Custom LCTech 4-channel relay output: https://github.com/nekromant/esphome-lctech-4chanel-modules
|
||||
- LIFX Protocol for ESPHome: https://github.com/giantorth/ESPHomeLifx
|
||||
- Custom ESPHome Keypad sensor: https://github.com/Syralist/esphomekeypad
|
||||
- LINP-Doorbell-g03 Custom Component: https://github.com/pauln/esphome-linp-doorbell-g03
|
||||
- ESPHome <-> Homebridge: https://www.npmjs.com/package/homebridge-esphome
|
||||
- `Custom RGBW Light Output emulating color temperature support <https://gist.github.com/madjam002/31cc88640efa370630fed6914fa4eb7f>`__ by :ghuser:`madjam002`
|
||||
- `Custom ESPHome native API to influxdb python script <https://gist.github.com/fpletz/d071c72e45d17ba274fd61ca7a465033#file-esphome-sensor-influxdb-py>`__ by :ghuser:`fpletz`
|
||||
- `Custom Electra HVAC climate component <https://gist.github.com/liads/c702fd4b8529991af9cd52d03b694814>`__ by :ghuser:`liads`
|
||||
- `Custom D6T Thermal Sensor <https://gist.github.com/mKeRix/4fc553574af0a2d8682734695160b859>`__ by :ghuser:`mKeRix`
|
||||
- `Custom 斐讯DC1 Mains Socket Component (chinese) <https://github.com/Samuel-0-0/phicomm_dc1-esphome>`__ by :ghuser:`Samuel-0-0`
|
||||
- `Custom Component for Tuya PIR sensors <https://github.com/brandond/esphome-tuya_pir>`__ by :ghuser:`brandond`
|
||||
- `DIY Whole Home Power Monitoring with ATM90E32AS chip <https://www.youtube.com/watch?v=BOgy6QbfeZk>`__ by `digiblurDIY <https://www.youtube.com/channel/UC5ZdPKE2ckcBhljTc2R_qNA>`__
|
||||
- `SK6812 Addressable Light as Display Matrix <https://github.com/rnauber/ESPHomeMatrixLED>`__ by :ghuser:`rnauber`
|
||||
- `Custom MAX7219 Matrix Display Component <https://github.com/ASMfreaK/esphome_max7219>`__ by :ghuser:`ASMfreaK`
|
||||
- `Custom ESPHome Roomba Component <https://github.com/mannkind/ESPHomeRoombaComponent>`__ by :ghuser:`mannkind`
|
||||
- `Custom Real-Time LED strip music visualization <https://github.com/zhujisheng/audio-reactive-led-strip>`__ by :ghuser:`zhujisheng`
|
||||
- `Custom ITHO Fan control <https://github.com/CoMPaTech/esphome_c1101>`__ by :ghuser:`CoMPaTech`
|
||||
- `Custom LCTech 4-channel relay output <https://github.com/nekromant/esphome-lctech-4chanel-modules>`__ by :ghuser:`nekromant`
|
||||
- `LIFX Protocol for ESPHome <https://github.com/giantorth/ESPHomeLifx>`__ by :ghuser:`giantorth`
|
||||
- `Custom ESPHome Keypad sensor <https://github.com/Syralist/esphomekeypad>`__ by :ghuser:`Syralist`
|
||||
- `LINP-Doorbell-g03 Custom Component <https://github.com/pauln/esphome-linp-doorbell-g03>`__ by :ghuser:`pauln`
|
||||
- `ESPHome <-> Homebridge <https://www.npmjs.com/package/homebridge-esphome>`__ by `basdelfos <https://www.npmjs.com/~basdelfos>`__
|
||||
|
||||
Sample Configurations
|
||||
---------------------
|
||||
|
||||
- esphome-configs.io by :ghuser:`jonathanadams`: https://esphome-configs.io/
|
||||
- Ultrasonic Sensor for detecting if car in Garage: https://gist.github.com/Snipercaine/f3908a051fd79e6d7d7b765152666c2a
|
||||
- Sonoff POW R2 Washing Machine Sensor: https://gist.github.com/frenck/1b4f0ea98f1f6d86d597c2d9636636db
|
||||
- Sonoff iFan02 Custom Output Example: https://gist.github.com/quazzie/09ee3ef2c419ecbcf979a7410062481b
|
||||
- TTGO Esp32 Camera with display: https://gist.github.com/Snipercaine/d8345571563536e9661422c3509d1119
|
||||
- ESPHome configs using ``substitution`` and ``!include``, by :ghuser:`AlexMekkering`: https://github.com/AlexMekkering/esphome-config
|
||||
- ESPHome configs by :ghuser:`glmnet`: https://github.com/glmnet/esphome_devices
|
||||
- DS102 3 Gang: https://gist.github.com/tribut/ddde2ef1e2fa3919c50c4ab9c03e7056
|
||||
- ESP32 Higrow Plant Moisture Sensor: https://gist.github.com/WoLpH/bc284ba9aeb5d1263f72d6294e239c1a
|
||||
- Send push notification to phone when dryer cycle has finished: https://gist.github.com/jeffehobbs/93ab682705ec3bbba19887903e7ccdb9
|
||||
- ESP8266 Smart Sprinkler Project: https://github.com/selfhostedhome/smart-sprinkler
|
||||
- LOHAS RGBW/CWWW Smart bulbs: https://www.youtube.com/watch?v=fTb6n6flJIw
|
||||
- ESPHome with MakerLife Weather Station Kit: https://github.com/mkuoppa/esphomeweatherstation
|
||||
- ESPHome DIY Multisensor Cat Feeder: https://github.com/335iguy/diy-multisensor-cat-feeder
|
||||
- `esphome-configs.io <https://esphome-configs.io/>`__ by :ghuser:`jonathanadams`
|
||||
- `Ultrasonic Sensor for detecting if car in Garage <https://gist.github.com/Snipercaine/f3908a051fd79e6d7d7b765152666c2a>`__ by `DrZzs <http://drzzs.com/>`__
|
||||
- `Sonoff POW R2 Washing Machine Sensor <https://gist.github.com/frenck/1b4f0ea98f1f6d86d597c2d9636636db>`__ by `Frenck <https://frenck.dev>`__
|
||||
- `Sonoff iFan02 Custom Output Example <https://gist.github.com/quazzie/09ee3ef2c419ecbcf979a7410062481b>`__ by :ghuser:`quazzie`
|
||||
- `TTGO Esp32 Camera with display <https://gist.github.com/Snipercaine/d8345571563536e9661422c3509d1119>`__ by `DrZzs <http://drzzs.com/>`__
|
||||
- `ESPHome configs using substitutions and !include <https://github.com/AlexMekkering/esphome-config>`__ by :ghuser:`AlexMekkering`
|
||||
- `ESPHome configs <https://github.com/glmnet/esphome_devices>`__ by :ghuser:`glmnet`
|
||||
- `DS102 3 Gang <https://gist.github.com/tribut/ddde2ef1e2fa3919c50c4ab9c03e7056>`__ by :ghuser:`tribut`
|
||||
- `ESP32 Higrow Plant Moisture Sensor <https://gist.github.com/WoLpH/bc284ba9aeb5d1263f72d6294e239c1a>`__ by :ghuser:`WoLpH`
|
||||
- `Send push notification to phone when dryer cycle has finished <https://gist.github.com/jeffehobbs/93ab682705ec3bbba19887903e7ccdb9>`__ by :ghuser:`jeffehobbs`
|
||||
- `ESP8266 Smart Sprinkler Project <https://github.com/selfhostedhome/smart-sprinkler>`__ by `Self Hosted Home <https://selfhostedhome.com>`__
|
||||
- `LOHAS RGBW/CWWW Smart bulbs <https://www.youtube.com/watch?v=fTb6n6flJIw>`__ by `digiblurDIY <https://www.youtube.com/channel/UC5ZdPKE2ckcBhljTc2R_qNA>`__
|
||||
- `ESPHome with MakerLife Weather Station Kit <https://github.com/mkuoppa/esphomeweatherstation>`__ by :ghuser:`mkuoppa`
|
||||
- `ESPHome DIY Multisensor Cat Feeder <https://github.com/335iguy/diy-multisensor-cat-feeder>`__ by :ghuser:`335iguy`
|
||||
|
Loading…
Reference in New Issue
Block a user