From 06d93a23ba3f52a97d65b40b0d0fca83ae74db0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pobo=C5=99il?= Date: Tue, 15 Feb 2022 23:12:36 +0100 Subject: [PATCH 1/2] Fixed link to datasheet. (#1906) --- components/sensor/sgp30.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/sensor/sgp30.rst b/components/sensor/sgp30.rst index 448b8431e..e75346642 100644 --- a/components/sensor/sgp30.rst +++ b/components/sensor/sgp30.rst @@ -6,7 +6,7 @@ SGP30 CO₂ and Volatile Organic Compound Sensor :image: sgp30.jpg The ``sgp30`` sensor platform allows you to use your Sensirion SGP30 multi-pixel gas -(`datasheet `__) sensors or the SVM30 breakout-boards (`product page `__) with ESPHome. +(`datasheet `__) sensors or the SVM30 breakout-boards (`product page `__) with ESPHome. The :ref:`I²C Bus ` is required to be set up in your configuration for this sensor to work. .. figure:: images/eco2-tvoc.png From f9ded4090af9d774861766e30388d59769ad71c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20L=C3=B6vdahl?= Date: Wed, 16 Feb 2022 00:14:33 +0200 Subject: [PATCH 2/2] Add docker-compose sample file (#1903) --- guides/getting_started_command_line.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/guides/getting_started_command_line.rst b/guides/getting_started_command_line.rst index 8b37fc848..ac84a1ab6 100644 --- a/guides/getting_started_command_line.rst +++ b/guides/getting_started_command_line.rst @@ -21,6 +21,23 @@ AMD64, ARM and ARM64 (AARCH64), and can be downloaded with: docker pull esphome/esphome +If you want to use `docker-compose` instead, here's a sample file: + +.. code-block:: yaml + + version: '3' + services: + esphome: + container_name: esphome + image: esphome/esphome + volumes: + - /path/to/esphome/config:/config + - /etc/localtime:/etc/localtime:ro + restart: always + privileged: true + network_mode: host + + Connecting the ESP Device -------------------------