Robert Van Gorkom fa56959b35
Updating docs to remove profiles config option. (#13779)
Co-authored-by: Franck Nijhof <git@frenck.dev>
2020-06-22 19:07:32 +02:00

7.0 KiB

title, description, ha_category, ha_release, ha_iot_class, ha_config_flow, ha_codeowners, ha_domain
title description ha_category ha_release ha_iot_class ha_config_flow ha_codeowners ha_domain
Withings Instructions on how to integrate Withings health products within Home Assistant.
Health
Sensor
0.99 Cloud Polling true
@vangorra
withings

The withings sensor platform consumes data from various health products produced by Withings.

Setup (Simple)

For simplicity, these instructions assume your installation uses Home Assistant Cloud.

Step 1 - Create a Withings Account

You must have a developer account to distribute the data. Create a free development account.

Values for your account:

  • Logo: Any reasonable picture will do.
  • Description: Personal app for collecting my data.
  • Contact Email: Your email address
  • Callback Uri: https://YOUR_NABU_CASA_ID.ui.nabu.casa/auth/external/callback.
  • Company: Home Assistant

Once saved, the "Client Id" and "Consumer Secret" fields will be populated. You will need these in the next step.

Step 2 - Configure Home Assistant

  • Add the Withings configuration YAML.
    # Example configuration.yaml entry
    withings:
      client_id: CLIENT_ID
      client_secret: CONSUMER_SECRET
    
  • Confirm your YAML configuration is valid by using the Check Config tool (see note).
    • Note: In order for "Check Configuration" to be visible, you must enable "Advanced Mode" on your user profile. The "Check Configuration" tool can be found by clicking "Configuration" from the sidebar (cog icon) and then clicking "Server Control".
  • Restart Home Assistant.

Step 3 - Authorize Home Assistant

  • Add the Withings integration.
  • Once authorized, the tab/window will close and the integration page will prompt to select a profile. Select the profile you chose while on the Withings site.
    • Note: It's important you select the same profile from the previous step. Choosing a different one will result in Home Assistant displaying the wrong data.
  • Data will synchronize immediately and update under the following conditions:
    • If use_webhook is enabled:
      • Each time Withings notifies Home Assistant of a data change.
      • Every 120 minutes.
    • If use_webhook is not enabled:
      • Every 10 minutes.

Setup (Advanced)

For advanced users who are NOT using Home Assistant Cloud. This is not intended to be a complete step-by-step guide.

Requirements

Withings will validate (with HTTP HEAD) these requirements each time you save your Withings developer account. When these checks fail, the Withings UI is not always clear about why.

  • Home Assistant (For create/update of Withings developer account):
    • Publicly accessible.
    • Running on a fully qualified domain name.
    • Running over HTTPS signed by a globally recognized Certificate Authority. Let's Encrypt will work.
  • Home Assistant (For adding the integration)
    • Home Assistant's external_url needs to be set to match the redirect uri provided for your Withings account.

Steps

  • Create a developer account with the same steps from the instructions above.
    • The redirect uri should look like https://<MY_DOMAIN_NAME>/auth/external/callback.
  • Configure Home Assistant's URL. This guarantees Withings will receive the proper redirect_uri. When adding the integration, Withings will throw an error if this is not setup correctly.
    homeassistant:
      external_url: https://<MY_DOMAIN_NAME>
    
  • Configure the Withings integration in your configuration YAML (see above).
  • Add the integration (see above).
    • The following only applied if you chose to close off Home Assistant from the public after setting up your Withings account. After authorizing finishing authorization, your browser will redirect back to https://<MY_DOMAIN_NAME>/auth/external/callback. Since that is no longer public, your browser will return an error saying it could not connect. You can get around this by modifying the URL (in the browser) to point to your local address of Home Assistant. So your browser's URL looked like https://<MY_DOMAIN_NAME>/auth/external/callback but now change it to something like https://192.168.1.11:8123/auth/external/callback.

Configuration

# Example configuration.yaml entry
withings:
    client_id: CLIENT_ID
    client_secret: CONSUMER_SECRET
    use_webhook: true

{% configuration %} client_id: description: The OAuth client id (get from https://account.withings.com/partner/add_oauth2) required: true type: string client_secret: description: The OAuth secret (get from https://account.withings.com/partner/add_oauth2) required: true type: string use_webhook: description: "Configure Withings to notify Home Assistant when data changes. This also required to populate the in_bed sensor. Note: In order for this to work, your Home Assistant install must be accessible to the internet." required: false default: false type: boolean {% endconfiguration %}

Bonus: Template Sensors to Convert Kilograms to Pounds

In a text editor, replace USER_PROFILE_NAME in the template sensors below with your Withings User Profile Name defined in the Withings integration configuration.

{% raw %}

# Example configuration.yaml entry
sensors:
  - platform: template
    sensors:
      withings_weight_lbs_USER_PROFILE_NAME:
        friendly_name: "withings weight_lbs_USER_PROFILE_NAME"
        unit_of_measurement: 'lbs'
        value_template: "{{ (states('sensor.withings_weight_kg_USER_PROFILE_NAME') | float * 2.20462262185) | round(2) }}"
        icon_template: mdi:weight-pound

  - platform: template
    sensors:
      withings_bone_mass_lbs_USER_PROFILE_NAME:
        friendly_name: "withings bone_mass_lbs_USER_PROFILE_NAME"
        unit_of_measurement: 'lbs'
        value_template: "{{ (states('sensor.withings_bone_mass_kg_USER_PROFILE_NAME') | float * 2.20462262185) | round(2) }}"
        icon_template: mdi:weight-pound
        
  - platform: template
    sensors:
      withings_fat_free_mass_lbs_USER_PROFILE_NAME:
        friendly_name: "withings fat_free_mass_lbs_USER_PROFILE_NAME"
        unit_of_measurement: 'lbs'
        value_template: "{{ (states('sensor.withings_fat_free_mass_kg_USER_PROFILE_NAME') | float * 2.20462262185) | round(2) }}"
        icon_template: mdi:weight-pound
        
  - platform: template
    sensors:
      withings_fat_mass_lbs_USER_PROFILE_NAME:
        friendly_name: "withings fat_mass_lbs_USER_PROFILE_NAME"
        unit_of_measurement: 'lbs'
        value_template: "{{ (states('sensor.withings_fat_mass_kg_USER_PROFILE_NAME') | float * 2.20462262185) | round(2) }}"
        icon_template: mdi:weight-pound
        
  - platform: template
    sensors:
      withings_muscle_mass_lbs_USER_PROFILE_NAME:
        friendly_name: "withings muscle_mass_lbs_USER_PROFILE_NAME"
        unit_of_measurement: 'lbs'
        value_template: "{{ (states('sensor.withings_muscle_mass_kg_USER_PROFILE_NAME') | float * 2.20462262185) | round(2) }}"
        icon_template: mdi:weight-pound

{% endraw %}