c0ffeeca7 7bf775c88b
p-r integrations: apply sentence-style caps to categories (#29905)
* p-r integrations: apply sentence-style caps to categories

* Apply suggestions from code review

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

---------

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2023-11-19 14:03:58 +01:00

52 lines
1.3 KiB
Markdown

---
title: PJLink
description: Instructions on how to integrate PJLink enabled projectors into Home Assistant.
ha_category:
- Media player
ha_release: 0.76
ha_iot_class: Local Polling
ha_domain: pjlink
ha_platforms:
- media_player
ha_integration_type: integration
---
The `pjlink` platform allows you to control from Home Assistant, projectors with support for the [PJLink protocol](https://pjlink.jbmia.or.jp/english/index.html).
## Configuration
To add a PJLink projector to your installation, add the following to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
media_player:
- platform: pjlink
host: 192.168.1.2
```
{% configuration %}
host:
description: IP address or hostname of the device. Example:`192.168.1.2`.
required: true
type: string
port:
description: port on which the PJLink service runs on the device.
required: false
type: integer
default: 4352
name:
description: Name of the device.
required: false
type: string
default: name of the device as returned by PJLink.
encoding:
description: Character encoding to use to communicate with the device.
required: false
type: string
default: utf-8
password:
description: Password to authenticate with the projector.
required: false
type: string
{% endconfiguration %}