Skip to content

Commit

Permalink
[bedjet] Update docs for esphome/esphome#6633
Browse files Browse the repository at this point in the history
  • Loading branch information
javawizard committed Apr 25, 2024
1 parent ab21cad commit afba4b2
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions components/climate/bedjet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,13 @@ Configuration variables:

Whichever is not selected will be made available as a custom preset.

- **temperature_source** (*Optional*, string): The temperature that should be used as the
climate entity's current temperature:

- ``ambient`` (Default) - The temperature of the room the BedJet is in will be
reported as the climate entity's current temperature.
- ``outlet`` - The temperature of the air being discharged by the BedJet will be
reported as the climate entity's current temperature.
- All other options from :ref:`Climate <config-climate>`.

``bedjet`` Fan
Expand Down Expand Up @@ -146,6 +153,38 @@ Configuration variables:
- **bedjet_id** (**Required**, :ref:`config-id`): The ID of the Bedjet component.
- Other options from :ref:`Fan <config-fan>`.

``bedjet`` Sensor
-----------------

The ``sensor`` platform exposes the BedJet's various temperature readings as sensors.

.. code-block:: yaml
sensor:
- platform: bedjet
bedjet_id: bedjet_1
outlet_temperature:
name: "My BedJet Outlet Temperature"
ambient_temperature:
name: "My BedJet Ambient Temperature"
Configuration variables:
************************

- **outlet_temperature** (*Optional*): If specified, the temperature of the air being
discharged from the BedJet will be reported as a sensor.

- **name** (**Required**, string): The name for the outlet temperature sensor.
- **id** (*Optional*, string): Set the ID of this sensor for use in lambdas.
- All other options from :ref:`Sensor <config-sensor>`.

- **ambient_temperature** (*Optional*): If specified, the temperature of the room the
BedJet is in will be reported as a sensor.

- **name** (**Required**, string): The name for the ambient temperature sensor.
- **id** (*Optional*, string): Set the ID of this sensor for use in lambdas.
- All other options from :ref:`Sensor <config-sensor>`.

Known issues:
-------------

Expand Down

0 comments on commit afba4b2

Please sign in to comment.