Extended Sony SDCP / PJ Talk projector control.
Python 3 library to query and control Sony Projectors using SDCP (PJ Talk) protocol over IP.
- Auto discover projector using SDAP (Simple Display Advertisement Protocol)
- Query and change power & input (HDMI 1 + 2)
- Set aspect ratio/zoom and calibration presets
- 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
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
Currently only available on Test PyPi
pip install --index-url https://test.pypi.org/simple/ pysdcp-extended
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)
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.
This plugin is an extended fork of pySDCP by Galala7 which is based on sony-sdcp-com NodeJS library by vokkim.
- homebridge-sony-sdcp - Homebridge plugin to control Sony Projectors (based on Galala7/pySDCP)
- ucr2-integration-sonySDCP - SDCP integration for Unfolded Circle Remote devices