From 14fbfe3b647125bc27e87c03b04a149ba03e4078 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Sat, 9 Jan 2021 07:52:26 +1300 Subject: [PATCH] Bump version to v1.17.0-dev --- Doxygen | 2 +- _static/version | 2 +- components/remote_transmitter.rst | 3 +++ components/sensor/apds9960.rst | 5 +++++ conf.py | 4 ++-- devices/sonoff_basic.rst | 3 +-- guides/diy.rst | 1 + 7 files changed, 14 insertions(+), 6 deletions(-) diff --git a/Doxygen b/Doxygen index 1ba35f94e..ae4d37139 100644 --- a/Doxygen +++ b/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.16.0-dev +PROJECT_NUMBER = 1.17.0-dev # 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 diff --git a/_static/version b/_static/version index 1f0d2f335..2b36e169a 100644 --- a/_static/version +++ b/_static/version @@ -1 +1 @@ -1.16.0-dev +1.17.0-dev \ No newline at end of file diff --git a/components/remote_transmitter.rst b/components/remote_transmitter.rst index 6561e1958..a2334fcb9 100644 --- a/components/remote_transmitter.rst +++ b/components/remote_transmitter.rst @@ -74,6 +74,9 @@ Configuration variables: - **transmitter_id** (*Optional*, :ref:`config-id`): The remote transmitter to send the remote code with. Defaults to the first one defined in the configuration. + +If you're looking for the same functionality as is default in the ``rpi_rf`` integration in +Home Assistant, you'll want to set the **times** to 10 and the **wait_time** to 0s. .. _remote_transmitter-transmit_raw: diff --git a/components/sensor/apds9960.rst b/components/sensor/apds9960.rst index ba0909054..dd0885858 100644 --- a/components/sensor/apds9960.rst +++ b/components/sensor/apds9960.rst @@ -76,6 +76,11 @@ Binary Sensor Configuration: - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. - All other options from :ref:`Binary Sensor `. +Troubleshooting: +---------------- + +With some APDS9960 modules the VL pin needs to be supplied with 3.3V for gesture sensing to work. The VL pin provides power for the infrared LED that is used to detect gestures. There may be two pads on the module which, if shorted with a solder joint, cause the main VCC power pin to supply power for the infrared LED as well. However, providing a separate power supply via the VL pin may help to isolate the rest of the circuit from noise created by pulsing the infrared LED at relatively high power. + See Also -------- diff --git a/conf.py b/conf.py index 8a22ea208..247a657cc 100644 --- a/conf.py +++ b/conf.py @@ -70,9 +70,9 @@ author = 'Otto Winter' # built documents. # # The short X.Y version. -version = '1.16' +version = '1.17' # The full version, including alpha/beta/rc tags. -release = '1.16.0-dev' +release = '1.17.0-dev' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/devices/sonoff_basic.rst b/devices/sonoff_basic.rst index 590d76ce0..463faa92e 100644 --- a/devices/sonoff_basic.rst +++ b/devices/sonoff_basic.rst @@ -54,8 +54,7 @@ exposes all of the basic functions. esphome: name: platform: ESP8266 - board: esp8285 - arduino_version: 2.4.2 + board: esp01_1m wifi: ssid: diff --git a/guides/diy.rst b/guides/diy.rst index 6d6855307..6b492f24f 100644 --- a/guides/diy.rst +++ b/guides/diy.rst @@ -98,3 +98,4 @@ Sample Configurations - `Control LG UD79-B monitor via UART `__ by :ghuser:`kquinsland` - `ESPHome AXA Remote 2 control `__ by :ghuser:`galagaking` - `ESPHome WF-DS01 TuyaMCU based dimmable bedside touch lamp `__ by :ghuser:`davet2001` +- `Universal menu system for devices with rotary encoder with push and SSD1306 I2C display `__ by :ghuser:`mikosoft83`