Extended SDCP / PJ Talk library to control Sony projectors
Project description
pySDCP-extended
Extended Sony SDCP / PJ Talk projector control.
Python 3 library to query and control Sony Projectors using SDCP (PJ Talk) protocol over IP.
Features
- Auto discover projector using SDAP (Simple Display Advertisement Protocol)
- Query and change power & input (HDMI 1 + 2)
- Set aspect ratio/zoom and calibration presets
Extended Features
- Support for more commands (added to protocol.py)
- Query and set picture muting
- Query lamp hours
- Query model name and serial number
- Show response error message from the projector
- Set a custom PJ Talk community & UDP advertisement SDAP port and TCP SDCP port
Protocol Documentation
Supported Projectors
Supported Sony projectors should include:
- VPL-HW65ES
- VPL-VW100
- VPL-VW260
- VPL-VW270
- VPL-VW285
- VPL-VW315
- VPL-VW320
- VPL-VW328
- VPL-VW365
- VPL-VW515
- VPL-VW520
- VPL-VW528
- VPL-VW665
- VPL-XW6100
Installation
pip install pysdcp-extended
Examples
Sending any command will initiate auto discovery of the projector if none is known and will carry on the command. So just go for it and maybe you get lucky
import pysdcp_extended
my_projector = pysdcp_extended.Projector()
my_projector.get_power()
my_projector.set_power(True)
Skip discovery to save time or if you know the IP of the projector
my_known_projector = pysdcp.Projector('10.1.2.3')
my_known_projector.set_HDMI_input(2)
You can also set a custom PJ Talk community and tcp/udp port. By default "SONY" will be used as the community and 53862 as udp port for SDAP advertisement and 53484 as tcp port for SDCP
my_known_projector = pysdcp.Projector(ip='10.1.2.3', community="THEATER", udp_port=53860, tcp_port=53480)
Commands from protocol.py
While you can use the build in functions like get_power() or set_HDMI_input() you can also directly send any command from protocol.py like this If you need to use more commands, just add to protocol.py, and send it like this:
from pysdcp_extended.protocol.py import *
my_projector._send_command(action=ACTIONS["SET"], command=COMMANDS_IR["CURSOR_UP"])
Please note that commands in COMMANDS_IR work as fire and forget and you only get a response if there is a timeout.
Credits
This plugin is an extended fork of pySDCP by Galala7 which is based on sony-sdcp-com NodeJS library by vokkim.
See also
- homebridge-sony-sdcp - Homebridge plugin to control Sony Projectors (based on Galala7/pySDCP)
- ucr2-integration-sonySDCP - SDCP integration for Unfolded Circle Remote devices
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pysdcp_extended-0.2.0.tar.gz.
File metadata
- Download URL: pysdcp_extended-0.2.0.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e501ca20c0af9de93e4a2ccdccc7dfb708b20b04e8a340fd2314334180a302
|
|
| MD5 |
ef42b915cb5aa2f4fb0c4e1911b77ac8
|
|
| BLAKE2b-256 |
b02f0cccb3520ddd71e7780cb60b912a5f1fc3005fda50ad0569367f49311ad6
|
File details
Details for the file pysdcp_extended-0.2.0-py3-none-any.whl.
File metadata
- Download URL: pysdcp_extended-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1a4dd7fb87c38aa4f7a22e9cdb4aabae1b6bc0a90b32683a2ee59dfb690363c
|
|
| MD5 |
bc660f44eb5c384db5e68f5aea422b34
|
|
| BLAKE2b-256 |
56b38ef606802fc156becc37acdd6cf49afc762562db6e5ff0162ccaaa7f8356
|