Skip to content

Commit 3f1514b

Browse files
committed
v0.2.0
1 parent 2e395fc commit 3f1514b

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.2.0] - 2025-03-23
9+
10+
### Added
11+
12+
- Added advanced iris commands (Off, Full, Limited) and additional picture positions CUSTOM_4 & CUSTOM_5 (only supported by certain models)
13+
14+
## [0.1.0] - 2024-12-11
15+
16+
This is the first release published on pyPi.org

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Supported Sony projectors should include:
4343
* VPL-VW520
4444
* VPL-VW528
4545
* VPL-VW665
46+
* VPL-XW6100
4647

4748
## Installation
4849

pysdcp_extended/protocol.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"SET_POWER": 0x0130,
3131
"CALIBRATION_PRESET": 0x0002,
3232
"LAMP_CONTROL": 0x001A,
33+
"ADVANCED_IRIS": 0x001D,
3334
"MOTIONFLOW": 0x0059,
3435
"HDR": 0x007C,
3536
"INPUT_LAG_REDUCTION": 0x0099,
@@ -66,6 +67,12 @@
6667
"HIGH": 0x0001,
6768
}
6869

70+
ADVANCED_IRIS= {
71+
"OFF": 0x0000,
72+
"FULL": 0x0002,
73+
"LIMITED": 0x0003
74+
}
75+
6976
MOTIONFLOW = {
7077
"OFF": 0x0000,
7178
"SMOTH_HIGH": 0x0001,
@@ -91,7 +98,9 @@
9198
"2_35": 0x0001,
9299
"CUSTOM_1": 0x0002,
93100
"CUSTOM_2": 0x0003,
94-
"CUSTOM_3": 0x0004
101+
"CUSTOM_3": 0x0004,
102+
"CUSTOM_4": 0x0005,
103+
"CUSTOM_5": 0x0006
95104
}
96105

97106
ASPECT_RATIOS = {

0 commit comments

Comments
 (0)