home-assistant.io/source/_integrations/thinkingcleaner.markdown
2024-11-27 18:57:16 +01:00

1.9 KiB

title description ha_category ha_iot_class ha_release ha_domain ha_platforms ha_integration_type ha_quality_scale
Thinking Cleaner Instructions on how to integrate a ThinkingCleaner within Home Assistant.
Sensor
Switch
Local Polling 0.18 thinkingcleaner
sensor
switch
integration legacy

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

Sensor

The thinkingcleaner sensor platform simple displays information about your Thinking Cleaner (archived website) add-on.

To enable this sensor in your installation, add the following to your {% term "configuration.yaml" %} file:

sensor:
  - platform: thinkingcleaner

{% configuration %} host: description: IP address of Thinking Cleaner device required: false type: string {% endconfiguration %}

This will automatically add sensors for each Thinking Cleaner in your network.

Switch

The thinkingcleaner switch platform allows you to control your Thinking Cleaner (archived website) add-on.

To enable this switch in your installation, add the following to your {% term "configuration.yaml" %} file:

switch:
  - platform: thinkingcleaner

{% configuration %} host: description: IP address of Thinking Cleaner device required: false type: string {% endconfiguration %}

This will automatically add switches for each Thinking Cleaner in your network.

Example configuration using a Roomba with a static IP

If your thinkingcleaner device has a static IP address, you can also supply this to the sensor and switch using the host parameter. This is optional and will disable the automatic lookup.

sensor:
  - platform: thinkingcleaner
    host: 10.0.0.55
switch:
  - platform: thinkingcleaner
    host: 10.0.0.55