home-assistant.io/source/_components/eight_sleep.markdown
2017-06-13 19:26:01 +02:00

2.2 KiB

layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class
page Eight Sleep Interface an Eight Sleep smart cover or mattress to Home Assistant 2017-04-24 00:00 true false true true eight_sleep.png Hub 0.44 Cloud Polling

The eight_sleep component allows Home Assistant to fetch data from your Eight Sleep smart cover or mattress.

It's setup utilizing 'Sensor' components to convey the current state of your bed and results of your sleep sessions and a 'Binary Sensor' component to indicate your presence in the bed. A service is also provided to set the heating level and duration of the bed.

You must have at least two sleep sessions recorded in the Eight Sleep app prior to setting up the Home Assistant component.

To get started add the following information to your configuration.yaml file:

# Example configuration.yaml entry
eight_sleep:
    username: "user@email.com"
    password: "password"

Configuration variables:

  • username (Required): The email address associated with your Eight Sleep account.
  • password (Required): The password associated with your Eight Sleep account.
  • partner (Optional): Default is False. Defines if you'd like to fetch data for both sides of the bed.

{% linkable_title Supported features %}

Sensors:

  • eight_left/right_bed_state
  • eight_left/right_sleep_session
  • eight_left/right_previous_sleep_session
  • eight_left/right_bed_temperature
  • eight_left/right_sleep_stage
  • eight_room_temperature

Binary Sensors:

  • eight_left/right_bed_presence

{% linkable_title Service heat_set %}

You can use the service eight_sleep/heat_set to adjust the target heating level and heating duration of your bed.

Service data attribute Optional Description
entity_id no Entity ID of bed state to adjust.
target no Target heating level from 0-100.
duration no Duration to heat at the target level in seconds.

Script Example:

script:
  bed_set_heat:
    sequence:
      - service: eight_sleep.heat_set
        data:
          entity_id: "sensor.eight_left_bed_state"
          target: 35
          duration: 3600