2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

70_ESCVP21net.pm: added undocumented settings (IMGPROC, IRIS, LIRIS)

git-svn-id: https://svn.fhem.de/fhem/trunk@26207 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
hapege 2022-07-10 20:31:46 +00:00
parent 298155e14e
commit 7b80b7aa4a

View File

@ -36,6 +36,7 @@
# 1.01.15 add debug options
# 1.01.16 add cyclicConnect to mitigate lost TCP connection issue
# 1.01.17 add TW9400
# 1.01.18 added undocumented settings (IMGPROC, IRIS,LIRIS)
#
################################################################################
#
@ -69,7 +70,7 @@ use POSIX;
#use JSON::XS qw (encode_json decode_json);
my $version = "1.01.17";
my $version = "1.01.18";
my $missingModul = "";
eval "use JSON::XS qw (encode_json decode_json);1" or $missingModul .= "JSON::XS ";
@ -113,6 +114,8 @@ my %ESCVP21net_TW5650sets = (
"CMODE" => ":get,Dynamic,Natural,Living,Cinema,3D_Cinema,3D_Dynamic",
"HREVERSE" => ":get,Flip,Normal",
"ILLUM" => ":get,on,off,toggle",
"IMGPROC" => ":get,fine,fast",
"IRIS" => ":get,00,01,02",
"LUMINANCE" => ":get,high,low,toggle",
"MCFI" => ":get,off,low,normal,high",
"MSEL" => ":get,black,blue,user",
@ -218,6 +221,9 @@ my %ESCVP21net_TW9400sets = (
"HREVERSE" => ":get,Flip,Normal",
"ILLUM" => ":get,on,off,toggle",
"IMGPRESET" => ":get,Setting1,Setting2,Setting3,Setting4,Setting5",
"IMGPROC" => ":get,fine,fast",
"IRIS" => ":get,00,01,02",
"LIRIS" => ":get,0,128,255",
"LUMINANCE" => ":get,normal,eco,medium",
"MCFI" => ":get,off,low,normal,high",
"MSEL" => ":get,black,blus,user",
@ -259,6 +265,9 @@ my %ESCVP21net_Scottysets = (
"HREVERSE" => ":get,Flip,Normal",
"ILLUM" => ":get,on,off,toggle",
"IMGPRESET" => ":get,Setting1,Setting2,Setting3,Setting4,Setting5",
"IMGPROC" => ":get,fine,fast",
"IRIS" => ":get,00,01,02",
"LIRIS" => ":get,0,128,255",
"LUMINANCE" => ":get,high,low,toggle",
"MCFI" => ":get,off,low,normal,high",
"MSEL" => ":get,black,blus,user",
@ -356,6 +365,8 @@ my %ESCVP21net_data = (
"IMGPRESET:Setting3" => "03",
"IMGPRESET:Setting4" => "04",
"IMGPRESET:Setting5" => "05",
"IMGPROC:fine" => "01",
"IMGPROC:fast" => "02",
"LUMINANCE:high" => "00",
"LUMINANCE:low" => "01",
"LUMINANCE:normal" => "00",
@ -440,6 +451,8 @@ my %ESCVP21net_defaultresults = (
"IMGPRESET:03" => "Setting3",
"IMGPRESET:04" => "Setting4",
"IMGPRESET:05" => "Setting5",
"IMGPROC:01" => "fine",
"IMGPROC:02" => "fast",
"MCFI:00" => "off",
"MCFI:01" => "low",
"MCFI:02" => "normal",