File: README.md

package info (click to toggle)
pypjlink2 1.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 172 kB
  • sloc: python: 571; makefile: 7; sh: 5
file content (14 lines) | stat: -rw-r--r-- 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# pypjlink2

Implementation of the PJLink Class 1 protocol to control projectors.

Fork of pypjlink which is no longer maintained, with support for Optoma projectors

## Usage
```python
from pypjlink import Projector

with Projector.from_address('projector_host') as projector:
    projector.authenticate()
    projector.set_power('on')
```