mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-23 18:46:50 +00:00
46 lines
1.1 KiB
Markdown
46 lines
1.1 KiB
Markdown
---
|
|
title: iGlo
|
|
description: Instructions on how to integrate iGlo lights into Home Assistant.
|
|
ha_category:
|
|
- Light
|
|
ha_iot_class: Local Polling
|
|
ha_release: 0.61
|
|
ha_domain: iglo
|
|
ha_platforms:
|
|
- light
|
|
ha_integration_type: integration
|
|
related:
|
|
- docs: /docs/configuration/
|
|
title: Configuration file
|
|
ha_quality_scale: legacy
|
|
---
|
|
|
|
The `iglo` {% term integration %} allows you to integrate your [iGlo Lights](https://www.youtube.com/watch?v=oHTS9ji_v-s) into Home Assistant.
|
|
|
|
To use your iGlo light in your installation, add the following to your {% term "`configuration.yaml`" %} file.
|
|
{% include integrations/restart_ha_after_config_inclusion.md %}
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
light:
|
|
- platform: iglo
|
|
host: 192.168.1.10
|
|
```
|
|
|
|
{% configuration %}
|
|
host:
|
|
required: true
|
|
description: The IP address for connecting to the light.
|
|
type: string
|
|
name:
|
|
required: false
|
|
description: The name for this light.
|
|
default: iGlo Light
|
|
type: string
|
|
port:
|
|
required: false
|
|
description: The port used to connect to the light.
|
|
default: 8080
|
|
type: integer
|
|
{% endconfiguration %}
|