diff --git a/fhem/FHEM/70_PHTV.pm b/fhem/FHEM/70_PHTV.pm
index 17cb0c0f1..20a975fde 100644
--- a/fhem/FHEM/70_PHTV.pm
+++ b/fhem/FHEM/70_PHTV.pm
@@ -23,21 +23,6 @@
# You should have received a copy of the GNU General Public License
# along with fhem. If not, see .
#
-#
-# Version: 1.3.1
-#
-# Major Version History:
-# - 1.2.0 - 2014-03-12
-# -- extended AmbiHue support
-#
-# - 1.1.0 - 2014-03-07
-# -- bugfixes
-# -- additional commands: ambiMode,rgb,pause,play,record,volumeStraight
-# -- additional readings for Ambilight state
-#
-# - 1.0.0 - 2014-03-06
-# -- First release
-#
##############################################################################
package main;
@@ -78,7 +63,7 @@ sub PHTV_Initialize($) {
$hash->{UndefFn} = "PHTV_Undefine";
$hash->{AttrList} =
-"disable:0,1 timeout sequentialQuery:0,1 drippyFactor:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 inputs ambiHueLeft ambiHueRight ambiHueTop ambiHueBottom ambiHueLatency:150,200,250,300,350,400,450,500,550,600,650,700,750,800,850,900,950,1000,1100,1200,1300,1400,1500,1600,1700,1800,1900,2000 jsversion:1,5,6 macaddr:textField wakeupCmd:textField "
+"disable:0,1 timeout sequentialQuery:0,1 drippyFactor:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 inputs ambiHueLeft ambiHueRight ambiHueTop ambiHueBottom ambiHueLatency:150,200,250,300,350,400,450,500,550,600,650,700,750,800,850,900,950,1000,1100,1200,1300,1400,1500,1600,1700,1800,1900,2000 jsversion:1,5,6 macaddr:textField wakeupCmd:textField channelsMax:slider,30,1,200 "
. $readingFnAttributes;
$data{RC_layout}{PHTV_SVG} = "PHTV_RClayout_SVG";
@@ -327,7 +312,8 @@ sub PHTV_Set($@) {
{
my $i = 1;
my $count = scalar( keys %{ $hash->{helper}{device}{channelPreset} } );
- $count = 80 if ( $count > 80 );
+ my $channelsMax = AttrVal( $name, "channelsMax", "80" );
+ $count = $channelsMax if ( $count > $channelsMax );
while ( $i <= $count ) {
if ( defined( $hash->{helper}{device}{channelPreset}{$i}{name} )
&& $hash->{helper}{device}{channelPreset}{$i}{name} ne "" )
@@ -3812,6 +3798,7 @@ sub PHTV_min {
ambiHueRight - HUE devices that should get the color from right Ambilight.
ambiHueBottom - HUE devices that should get the color from bottom Ambilight.
ambiHueLatency - Controls the update interval for HUE devices in milliseconds; defaults to 200 ms.
+ channelsMax - Maximum amount of channels shown in FHEMWEB. Defaults to 80.
disable - Disable polling (true/false)
drippyFactor - Adds some delay in seconds after low-performance devices came up to allow more time to become responsive (default=0)
inputs - Presents the inputs read from device. Inputs can be renamed by adding ,NewName
right after the original name.