diff --git a/Documentation/index.rst b/Documentation/index.rst
index 0eec748c6e5e51e67ac253a3c76120eb6df1fbc8..9cf3dac8f21d710f300f77e521397381a3393b6f 100644
--- a/Documentation/index.rst
+++ b/Documentation/index.rst
@@ -22,6 +22,7 @@ Last but not least, if you want to start hacking the lower-level firmware, the
 
    pycardium/overview
    pycardium/stdlib
+   pycardium/bme680
    pycardium/buttons
    pycardium/color
    pycardium/display
diff --git a/Documentation/pycardium/bme680.rst b/Documentation/pycardium/bme680.rst
index aa937fdfbf699cf59a9b7acfe17470ffde0c6748..8eb02f23b3b47813c90cc13f7022c63f51ab5f13 100644
--- a/Documentation/pycardium/bme680.rst
+++ b/Documentation/pycardium/bme680.rst
@@ -1,17 +1,40 @@
-``bme680`` - 4-in-1 Sensor
-==========================
+.. py:module:: bme680
 
-.. py:function:: bme680.init()
+``bme680`` - Environmental Sensor
+=================================
 
-   Before being able to read data from the sensor, you have to call init().
+**Example**:
 
-.. py:function:: bme680.get_data()
+.. code-block:: python
 
-   Does a single measurement to get environmental data.
+   import bme680, utime
 
-   :return: Tuple containing ``temperature`` (°C), ``humidity`` (% r.h.), 
-   ``pressure`` (hPa) and ``gas resistance`` (Ohm).
+   bme680.init()
 
-.. py:function:: bme680.deinit()
+   while True:
+       temperature, humidity, pressure, resistance = bme680.get_data()
 
-   De-Initializes the sensor.
\ No newline at end of file
+       print("Temperature:    {:10.2f} °C".format(temperature))
+       print("Humidity:       {:10.2f} % r.h.".format(humidity))
+       print("Pressure:       {:10.2f} hPa".format(pressure))
+       print("Gas Resistance: {:10.2f} Ω".format(resistance))
+
+       utime.sleep(1)
+
+.. py:function:: init()
+
+   Initialize the sensor.
+
+   Before being able to read data from the sensor, you have to call
+   :py:func:`bme680.init`.
+
+.. py:function:: get_data()
+
+   Perform a single measurement of environmental data.
+
+   :return: Tuple containing ``temperature`` (°C), ``humidity`` (% r.h.),
+      ``pressure`` (hPa) and ``gas resistance`` (Ohm).
+
+.. py:function:: deinit()
+
+   Deinitialize the sensor.