2019-03-10 04:45:59 -07:00

2.2 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_release, ha_category, ha_iot_class, redirect_from
layout title description date sidebar comments sharing footer logo ha_release ha_category ha_iot_class redirect_from
page Smappee Instructions on how to setup Smappee within Home Assistant. 2018-02-26 08:37 true false true true smappee.png 0.64
Hub
Energy
Sensor
Switch
Local Push
/components/sensor.smappee/
/components/switch.smappee/

The smappee component adds support for the Smappee controller for energy monitoring and Comport plug switches.

There is currently support for the following device types within Home Assistant:

  • Sensor
  • Switch

Will be automatically added when you connect to the Smappee controller.

The smappee component gets information from Smappee API. Note: their cloud API now requires a subscription fee of €2.50 per month for Smappee Energy/Solar or €3 per month for Smappee Plus.

{% linkable_title Configuration %}

Info on how to get API access is described in the smappy wiki.

To use the smappee component in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
smappee:
  host: 10.0.0.5
  client_id: YOUR_CLIENT_ID
  client_secret: YOUR_CLIENT_SECRET
  username: YOUR_MYSMAPPEE_USERNAME
  password: YOUR_MYSMAPPEE_PASSWORD
# Minimal example configuration.yaml entry
smappee:
  host: 10.0.0.5
# Cloud only example configuration.yaml entry
smappee:
  client_id: YOUR_CLIENT_ID
  client_secret: YOUR_CLIENT_SECRET
  username: YOUR_MYSMAPPEE_USERNAME
  password: YOUR_MYSMAPPEE_PASSWORD

{% configuration %} host: description: Your Local Smappee unit IP. required: false type: string host_password: description: Your Local Smappee password. required: false type: string client_id: description: Your Smappee API client ID. required: false type: string client_secret: description: Your Smappee API client secret. required: false type: string username: description: Your My Smappee username. required: false type: string password: description: Your My Smappee password. required: false type: string {% endconfiguration %}