Merge branch 'current' into next
@ -17,6 +17,6 @@ RUN pip3 install --no-cache-dir --no-binary :all: \
|
||||
sphinx
|
||||
|
||||
EXPOSE 8000
|
||||
WORKDIR /data/esphomedocs
|
||||
WORKDIR /data/esphome-docs
|
||||
|
||||
CMD ["make", "webserver"]
|
||||
|
@ -76,3 +76,9 @@ table.docutils {
|
||||
.not-hidden {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
img.index-shield {
|
||||
max-width: 100%;
|
||||
height: 26px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
@ -1,13 +0,0 @@
|
||||
(function() {
|
||||
var d = document, s = d.createElement('script');
|
||||
s.src = 'https://esphomelib.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
|
||||
var disqus_config = function () {
|
||||
let disqusThread = document.getElementById("disqus_thread");
|
||||
if (disqusThread === null)
|
||||
return;
|
||||
this.page.identifier = disqusThread.getAttribute('data-disqus-identifier');
|
||||
};
|
@ -5,7 +5,7 @@
|
||||
{% endblock %}
|
||||
|
||||
{%- block extrahead %}
|
||||
<link rel="stylesheet" href="{{ pathto('_static/custom.css', 1) }}" type="text/css" />
|
||||
<link rel="stylesheet" href="{{ pathto('_static/custom.css', 1) }}?hash={{ custom_css_hash }}" type="text/css" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_static/apple-touch-icon.png">
|
||||
<link rel="shortcut icon" href="/_static/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="512x512" href="/_static/favicon-512x512.png">
|
||||
|
@ -249,5 +249,3 @@ Past Changelogs
|
||||
v1.9.0
|
||||
v1.8.0
|
||||
v1.7.0
|
||||
|
||||
.. disqus::
|
||||
|
@ -293,5 +293,3 @@ Past Changelogs
|
||||
v1.9.0
|
||||
v1.8.0
|
||||
v1.7.0
|
||||
|
||||
.. disqus::
|
||||
|
@ -192,5 +192,3 @@ for using esphomeyaml to create a simple wireless doorbell:
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/xCQoOZNdaGY"
|
||||
frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
|
||||
|
||||
.. disqus::
|
||||
|
@ -228,5 +228,3 @@ Changes in 1.8.2
|
||||
- esphomedocs: WiFi: Add power save mode option `#41 <https://github.com/OttoWinter/esphomedocs/pull/41>`__
|
||||
- esphomedocs: Add SSD1306 64x48 Display `#27 <https://github.com/OttoWinter/esphomedocs/pull/27>`__
|
||||
- esphomeyaml: WiFi: Add power save mode option `#150 <https://github.com/OttoWinter/esphomeyaml/pull/150>`__
|
||||
|
||||
.. disqus::
|
||||
|
@ -336,5 +336,3 @@ Past Changelogs
|
||||
|
||||
v1.8.0
|
||||
v1.7.0
|
||||
|
||||
.. disqus::
|
||||
|
@ -156,10 +156,27 @@ Configuration options:
|
||||
- **variables** (*Optional*, mapping): Optional variables that can be used in the ``data_template``.
|
||||
Values are :ref:`lambdas <config-lambda>` and will be evaluated before sending the request.
|
||||
|
||||
Advantages over MQTT
|
||||
--------------------
|
||||
|
||||
The ESPHome native API has many advantages over using MQTT for communication with Home
|
||||
Automation software (currently only Home Assistant). But MQTT is a great protocol and will
|
||||
never be removed. Features of native API (vs. MQTT):
|
||||
|
||||
- **Much more efficient:** ESPHome encodes all messages in a highly optimized format with
|
||||
protocol buffers - for example binary sensor state messages are about 1/10 of the size.
|
||||
- **One-click configuration:** ESPHome just needs one click to set up in Home Assistant -
|
||||
no more messing around with retained MQTT discovery messages and alike.
|
||||
- **One less single point of failure:** In the ESPHome native API each ESP is its own server.
|
||||
With MQTT, when the broker shuts off nothing can communicate anymore.
|
||||
- **Stability:** Since ESPHome has far more control over the protocol than with MQTT,
|
||||
it's really easy for us to roll out stability improvements.
|
||||
- **Low Latency:** The native API is optimized for very low latency, usually this is only
|
||||
a couple of milliseconds and far less than can be noticed by the eye.
|
||||
|
||||
|
||||
See Also
|
||||
--------
|
||||
|
||||
- :apiref:`api/api_server.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -70,5 +70,3 @@ See Also
|
||||
--------
|
||||
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -65,5 +65,3 @@ See Also
|
||||
- :apiref:`esp32_ble_tracker.h`
|
||||
- `ESP32 BLE for Arduino <https://github.com/nkolban/ESP32_BLE_Arduino>`__ by `Neil Kolban <https://github.com/nkolban>`__.
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -158,5 +158,3 @@ See Also
|
||||
- :apiref:`binary_sensor/esp32_touch_binary_sensor.h`
|
||||
- `esp-idf Touch Sensor API <https://esp-idf.readthedocs.io/en/latest/api-reference/peripherals/touch_pad.html>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -100,5 +100,3 @@ See Also
|
||||
- :ref:`config-pin_schema`
|
||||
- :apiref:`binary_sensor/gpio_binary_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -30,5 +30,3 @@ See Also
|
||||
- :ref:`automation`
|
||||
- :apiref:`binary_sensor/homeassistant_binary_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -340,5 +340,3 @@ See Also
|
||||
:glob:
|
||||
|
||||
*
|
||||
|
||||
.. disqus::
|
||||
|
@ -40,5 +40,3 @@ See Also
|
||||
- :doc:`index`
|
||||
- :apiref:`display/nextion.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -144,5 +144,3 @@ See Also
|
||||
- :doc:`rdm6300`
|
||||
- :apiref:`binary_sensor/pn532_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -106,5 +106,3 @@ See Also
|
||||
- :doc:`/components/binary_sensor/index`
|
||||
- :apiref:`binary_sensor/rdm6300_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -125,5 +125,3 @@ See Also
|
||||
- `IRRemoteESP8266 <https://github.com/markszabo/IRremoteESP8266/>`__ by `Mark Szabo-Simon <https://github.com/markszabo>`__
|
||||
- :apiref:`remote/remote_receiver.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -33,5 +33,3 @@ See Also
|
||||
- :doc:`/components/mqtt`
|
||||
- :apiref:`binary_sensor/status_binary_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -92,5 +92,3 @@ See Also
|
||||
- :ref:`automation`
|
||||
- :apiref:`binary_sensor/template_binary_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -109,5 +109,3 @@ See Also
|
||||
:glob:
|
||||
|
||||
*
|
||||
|
||||
.. disqus::
|
||||
|
@ -115,5 +115,3 @@ See Also
|
||||
- :doc:`/cookbook/garage-door`
|
||||
- :apiref:`cover/template_cover.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -30,5 +30,3 @@ See Also
|
||||
- :doc:`logger`
|
||||
- :apiref:`debug_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -130,5 +130,3 @@ See Also
|
||||
- :ref:`automation`
|
||||
- :apiref:`deep_sleep_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -429,5 +429,3 @@ See Also
|
||||
:glob:
|
||||
|
||||
*
|
||||
|
||||
.. disqus::
|
||||
|
@ -167,5 +167,3 @@ See Also
|
||||
- :apiref:`display/lcd_display.h`
|
||||
- `Arduino LiquidCrystal Library <https://www.arduino.cc/en/Reference/LiquidCrystal>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -333,5 +333,3 @@ See Also
|
||||
- :apiref:`display/max7219.h`
|
||||
- `MAX7219 Library <https://github.com/nickgammon/MAX7219>`__ by `Nick Gammon <https://github.com/nickgammon>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -86,5 +86,3 @@ See Also
|
||||
- `Simple Nextion Library <https://github.com/bborncr/nextion>`__ by `Bentley Born <https://github.com/bborncr>`__
|
||||
- `Official Nextion Library <https://github.com/itead/ITEADLIB_Arduino_Nextion>`__ by `iTead <https://www.itead.cc/>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -148,5 +148,3 @@ See Also
|
||||
- :apiref:`display/ssd1306.h`
|
||||
- `SSD1306 Library <https://github.com/adafruit/Adafruit_SSD1306>`__ by `Adafruit <https://www.adafruit.com/>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -102,5 +102,3 @@ See Also
|
||||
- :apiref:`display/waveshare_epaper.h`
|
||||
- `Arduino Waveshare E-Paper library <https://github.com/soonuse/epd-library-arduino>`__ by `Yehui (@soonuse) <https://github.com/soonuse>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -76,5 +76,3 @@ See Also
|
||||
- :apiref:`esp32_ble_beacon.h`
|
||||
- `ESP32 BLE for Arduino <https://github.com/nkolban/ESP32_BLE_Arduino>`__ by `Neil Kolban <https://github.com/nkolban>`__.
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -68,5 +68,3 @@ See Also
|
||||
- :apiref:`esp32_ble_tracker.h`
|
||||
- `ESP32 BLE for Arduino <https://github.com/nkolban/ESP32_BLE_Arduino>`__ by `Neil Kolban <https://github.com/nkolban>`__.
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -265,5 +265,3 @@ See Also
|
||||
--------
|
||||
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -89,5 +89,3 @@ See Also
|
||||
|
||||
- :apiref:`wifi_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -39,5 +39,3 @@ See Also
|
||||
- :doc:`/components/fan/index`
|
||||
- :apiref:`fan/fan_state.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -106,5 +106,3 @@ Full Fan Index
|
||||
:glob:
|
||||
|
||||
*
|
||||
|
||||
.. disqus::
|
||||
|
@ -50,5 +50,3 @@ See Also
|
||||
- :doc:`/components/output/pca9685`
|
||||
- :apiref:`fan/fan_state.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -44,5 +44,3 @@ See Also
|
||||
|
||||
- :apiref:`i2c_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -44,5 +44,3 @@ See Also
|
||||
- :doc:`/components/power_supply`
|
||||
- :apiref:`light/light_state.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -56,5 +56,3 @@ See Also
|
||||
- :doc:`/components/output/pca9685`
|
||||
- :apiref:`light/light_state.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -175,5 +175,3 @@ See Also
|
||||
- :apiref:`light/fastled_light_output.h`
|
||||
- `Arduino FastLED library <https://github.com/FastLED/FastLED>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -554,5 +554,3 @@ See Also
|
||||
:glob:
|
||||
|
||||
*
|
||||
|
||||
.. disqus::
|
||||
|
@ -67,5 +67,3 @@ See Also
|
||||
- :doc:`/components/output/my9231`
|
||||
- :apiref:`light/light_state.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -99,5 +99,3 @@ See Also
|
||||
- :apiref:`light/neo_pixel_light_output.h`
|
||||
- `NeoPixelBus library <https://github.com/Makuna/NeoPixelBus/wiki/ESP8266-NeoMethods>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -65,5 +65,3 @@ See Also
|
||||
- :doc:`/components/light/neopixelbus`
|
||||
- :apiref:`light/addressable_light.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -70,5 +70,3 @@ See Also
|
||||
- :doc:`/components/output/my9231`
|
||||
- :apiref:`light/light_state.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -50,5 +50,3 @@ See Also
|
||||
- :doc:`/components/output/my9231`
|
||||
- :apiref:`light/light_state.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -61,5 +61,3 @@ See Also
|
||||
- :doc:`/components/output/my9231`
|
||||
- :apiref:`light/light_state.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -159,5 +159,3 @@ See Also
|
||||
- :doc:`/components/uart`
|
||||
- :apiref:`log_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -499,5 +499,3 @@ See Also
|
||||
|
||||
- :apiref:`mqtt/mqtt_client_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -65,5 +65,3 @@ See Also
|
||||
|
||||
- :apiref:`ota_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -90,5 +90,3 @@ See Also
|
||||
--------
|
||||
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -44,5 +44,3 @@ See Also
|
||||
- :doc:`/components/power_supply`
|
||||
- :apiref:`output/esp8266_pwm_output.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -42,5 +42,3 @@ See Also
|
||||
- :doc:`/components/power_supply`
|
||||
- :apiref:`output/gpio_binary_output_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -132,5 +132,3 @@ Full Output Index
|
||||
:glob:
|
||||
|
||||
*
|
||||
|
||||
.. disqus::
|
||||
|
@ -51,5 +51,3 @@ See Also
|
||||
- :apiref:`output/ledc_output_component.h`
|
||||
- `esp-idf LEDC API docs <https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/ledc.html>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -184,5 +184,3 @@ See Also
|
||||
- :apiref:`output/my9231_output_component.h`
|
||||
- `MY92XX LED driver library for Arduino AVR and ESP8266 <https://github.com/xoseperez/my92xx>`__ by `@xoseperez <https://github.com/xoseperez>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -93,5 +93,3 @@ See Also
|
||||
- :apiref:`output/pca9685_output_component.h`
|
||||
- `PCA9685 Arduino Library <https://github.com/NachtRaveVL/PCA9685-Arduino>`__ by `@NachtRaveVL <https://github.com/NachtRaveVL>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -64,5 +64,3 @@ See Also
|
||||
- `PCF8574 Arduino Library <https://github.com/skywodd/pcf8574_arduino_library>`__ by `Fabien Batteix <https://github.com/skywodd>`__
|
||||
- :apiref:`io/pcf8574_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -71,5 +71,3 @@ See Also
|
||||
- :doc:`output/index`
|
||||
- :apiref:`power_supply_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -82,5 +82,3 @@ See Also
|
||||
- :doc:`max6675`
|
||||
- :apiref:`sensor/adc.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -122,5 +122,3 @@ See Also
|
||||
- :apiref:`sensor/ads1115_component.h`
|
||||
- `i2cdevlib <https://github.com/jrowberg/i2cdevlib>`__ by `Jeff Rowberg <https://github.com/jrowberg>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -82,5 +82,3 @@ See Also
|
||||
- :ref:`sensor-filters`
|
||||
- :apiref:`sensor/apds9960.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -56,5 +56,3 @@ See Also
|
||||
- :apiref:`sensor/bh7150_sensor.h`
|
||||
- `BH1750 Library <https://github.com/claws/BH1750>`__ by `@claws <https://github.com/claws>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -37,5 +37,3 @@ See Also
|
||||
- :doc:`/components/sensor/index`
|
||||
- :apiref:`esp32_ble_tracker.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -95,5 +95,3 @@ See Also
|
||||
- `Adafruit BME280 Library <https://github.com/adafruit/Adafruit_BME280_Library>`__ by `Adafruit <https://www.adafruit.com/>`__
|
||||
- `Sparkfun BME280 Library <https://github.com/sparkfun/SparkFun_BME280_Arduino_Library>`__ by `Sparkfun <https://www.sparkfun.com/>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
@ -112,5 +112,3 @@ See Also
|
||||
- :apiref:`sensor/bme680_component.h`
|
||||
- `BME680 Sensor API <https://github.com/BoschSensortec/BME680_driver>`__ by `Bosch Sensortec <https://www.bosch-sensortec.com/>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.1 KiB |
@ -65,5 +65,3 @@ See Also
|
||||
- :apiref:`sensor/bmp085_component.h`
|
||||
- `i2cdevlib <https://github.com/jrowberg/i2cdevlib>`__ by `Jeff Rowberg <https://github.com/jrowberg>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@ -91,5 +91,3 @@ See Also
|
||||
- :apiref:`sensor/bmp280_component.h`
|
||||
- `BMP280 Library <https://github.com/adafruit/Adafruit_BMP280_Library>`__ by `Adafruit <https://www.adafruit.com/>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
@ -58,5 +58,3 @@ See Also
|
||||
- :ref:`sensor-filters`
|
||||
- :apiref:`sensor/cse7766.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -371,5 +371,3 @@ See Also
|
||||
--------
|
||||
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -153,5 +153,3 @@ See Also
|
||||
by `Miles Burton <https://github.com/milesburton>`__
|
||||
- :apiref:`sensor/dallas_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -86,5 +86,3 @@ See Also
|
||||
- :apiref:`sensor/dht_component.h`
|
||||
- `Arduino DHTLib <https://playground.arduino.cc/Main/DHTLib>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -62,5 +62,3 @@ See Also
|
||||
- :apiref:`sensor/dht12_component.h`
|
||||
- `DHT12 Library <https://github.com/dplasa/dht>`__ by `Daniel Plasa <https://github.com/dplasa>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -39,5 +39,3 @@ See Also
|
||||
- :ref:`sensor-filters`
|
||||
- :apiref:`sensor/duty_cycle_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -53,5 +53,3 @@ See Also
|
||||
- :doc:`/devices/esp32`
|
||||
- :apiref:`sensor/esp32_hall_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -69,5 +69,3 @@ See Also
|
||||
- :apiref:`sensor/hdc1080_component.h`
|
||||
- `HDC1080 Library <https://github.com/closedcube/ClosedCube_HDC1080_Arduino>`__ by `ClosedCube <https://www.tindie.com/stores/closedcube/>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -65,5 +65,3 @@ See Also
|
||||
- :apiref:`sensor/hlw8012.h`
|
||||
- `HLW8012 Library <https://github.com/xoseperez/hlw8012>`__ by `Xose Pérez <https://github.com/xoseperez>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -56,5 +56,3 @@ See Also
|
||||
- :apiref:`sensor/hmc5883l.h`
|
||||
- `HMC5883L Library <https://github.com/jarzebski/Arduino-HMC5883L>`__ by `Korneliusz Jarzębski <https://github.com/jarzebski>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -39,5 +39,3 @@ See Also
|
||||
- :ref:`automation`
|
||||
- :apiref:`sensor/homeassistant_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -67,5 +67,3 @@ See Also
|
||||
- :apiref:`sensor/htu21d_component.h`
|
||||
- `i2cdevlib <https://github.com/jrowberg/i2cdevlib>`__ by `Jeff Rowberg <https://github.com/jrowberg>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -84,5 +84,3 @@ See Also
|
||||
- :apiref:`sensor/hx711.h`
|
||||
- `HX711 Library <https://github.com/bogde/HX711>`__ by `@bogde <https://github.com/bogde>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -73,5 +73,3 @@ See Also
|
||||
- :apiref:`sensor/ina219.h`
|
||||
- `INA291 Arduino Library <https://github.com/adafruit/Adafruit_INA219>`__ by `Adafruit <https://www.adafruit.com/>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -84,5 +84,3 @@ See Also
|
||||
- :apiref:`sensor/ina3221.h`
|
||||
- `INA3221 Arduino Library <https://github.com/switchdoclabs/SDL_Arduino_INA3221>`__ by `SwitchDoc Labs <https://github.com/switchdoclabs>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -440,5 +440,3 @@ See Also
|
||||
:glob:
|
||||
|
||||
*
|
||||
|
||||
.. disqus::
|
||||
|
@ -55,5 +55,3 @@ See Also
|
||||
- `MAX31855 Library <https://github.com/adafruit/Adafruit-MAX31855-library>`__ by `Adafruit <https://www.adafruit.com/>`__
|
||||
- :apiref:`sensor/max31855_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -62,5 +62,3 @@ See Also
|
||||
- `MAX6675 Library <https://github.com/adafruit/MAX6675-library>`__ by `Adafruit <https://www.adafruit.com/>`__
|
||||
- :apiref:`sensor/max6675_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -74,5 +74,3 @@ See Also
|
||||
- `MH-Z19 library <https://github.com/nara256/mhz19_uart>`__ by `@nara356 <https://github.com/nara256>`__
|
||||
- :apiref:`sensor/mhz19_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -81,5 +81,3 @@ See Also
|
||||
- :apiref:`sensor/mpu6050_component.h`
|
||||
- `i2cdevlib <https://github.com/jrowberg/i2cdevlib>`__ by `Jeff Rowberg <https://github.com/jrowberg>`__
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -38,5 +38,3 @@ See Also
|
||||
- :ref:`sensor-filters`
|
||||
- :apiref:`sensor/mqtt_subscribe_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -66,5 +66,3 @@ See Also
|
||||
- `Arduino MS5611 Library <https://github.com/jarzebski/Arduino-MS5611>`__ by `Korneliusz Jarzębski <https://github.com/jarzebski>`__
|
||||
- :apiref:`sensor/ms5611.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -61,5 +61,3 @@ See Also
|
||||
- :ref:`sensor-filters`
|
||||
- :apiref:`sensor/pmsx003.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -76,5 +76,3 @@ See Also
|
||||
- `esp-idf Pulse Counter API <https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/pcnt.html>`__.
|
||||
- :apiref:`sensor/pulse_counter.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -87,5 +87,3 @@ See Also
|
||||
- `Mechanical Input Library <https://github.com/jkDesignDE/MechInputs>`__ by `Jochen Krapf <https://github.com/JK-de>`__
|
||||
- :apiref:`sensor/rotary_encoder.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -59,5 +59,3 @@ See Also
|
||||
- :doc:`htu21d`
|
||||
- :apiref:`sensor/sht3xd_component.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -75,5 +75,3 @@ See Also
|
||||
- `TCS34725 library <https://github.com/adafruit/Adafruit_TCS34725>`__ by `Adafruit <https://www.adafruit.com/>`__
|
||||
- :apiref:`sensor/tcs34725.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -88,5 +88,3 @@ See Also
|
||||
- :ref:`automation`
|
||||
- :apiref:`sensor/template_sensor.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|
@ -68,5 +68,3 @@ See Also
|
||||
- :doc:`/cookbook/power_meter`
|
||||
- :apiref:`sensor/total_daily_energy.h`
|
||||
- :ghedit:`Edit`
|
||||
|
||||
.. disqus::
|
||||
|