2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 20:57:11 +00:00

HMCCU: Switched close to closed

git-svn-id: https://svn.fhem.de/fhem/trunk@26434 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
zap 2022-09-20 19:41:02 +00:00
parent 3ad503c177
commit a52fbabeb5
6 changed files with 21 additions and 21 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- change: 88_HMCCU: Switched close to closed
- bugfix: 70_Klafs: package main was removed from source code
- bugfix: 31_LightScene: fixes for configDB (by Beta-User)
- change: 93_DbRep: reduce memory allocation of reduceLog command

View File

@ -57,7 +57,7 @@ my %HMCCU_CUST_CHN_DEFAULTS;
my %HMCCU_CUST_DEV_DEFAULTS;
# HMCCU version
my $HMCCU_VERSION = '5.0 222611615';
my $HMCCU_VERSION = '5.0 222632130';
# Timeout for CCU requests (seconds)
my $HMCCU_TIMEOUT_REQUEST = 4;
@ -10028,7 +10028,7 @@ sub HMCCU_BuildURL ($$)
$password = HMCCU_Decrypt ($encpass);
}
my $auth = ($username ne '' && $password ne '') ? "$username:$password".'@' : '';
if ($backend eq 'rega') {
$url = $hash->{prot}."://$auth".$hash->{host}.':'.
$HMCCU_REGA_PORT{$hash->{prot}}.'/tclrega.exe';
@ -10686,8 +10686,7 @@ sub HMCCU_MaxHashEntries ($$)
Acknowledge "device was unreachable" messages in CCU.
</li><br/>
<li><b>set &lt;name&gt; authentication [&lt;username&gt; &lt;password&gt;]</b><br/>
Set credentials for CCU authentication. Authentication must be activated by setting flag
'authenticate' in attribute 'ccuflags'.<br/>
Set credentials for CCU authentication.<br/>
When executing this command without arguments, the credentials are deleted.
</li><br/>
<li><b>set &lt;name&gt; clear [&lt;reading-exp&gt;]</b><br/>

View File

@ -30,7 +30,7 @@ sub HMCCUCHN_Set ($@);
sub HMCCUCHN_Get ($@);
sub HMCCUCHN_Attr ($@);
my $HMCCUCHN_VERSION = '5.0 222611615';
my $HMCCUCHN_VERSION = '5.0 222632130';
######################################################################
# Initialize module

View File

@ -31,7 +31,7 @@ sub HMCCUDEV_Set ($@);
sub HMCCUDEV_Get ($@);
sub HMCCUDEV_Attr ($@);
my $HMCCUDEV_VERSION = '5.0 222611615';
my $HMCCUDEV_VERSION = '5.0 222632130';
######################################################################
# Initialize module

View File

@ -39,7 +39,7 @@ use SetExtensions;
######################################################################
# HMCCURPC version
my $HMCCURPCPROC_VERSION = '5.0 222611615';
my $HMCCURPCPROC_VERSION = '5.0 222632130';
# Maximum number of events processed per call of Read()
my $HMCCURPCPROC_MAX_EVENTS = 100;

View File

@ -717,16 +717,16 @@ $HMCCU_CONFIG_VERSION = '5.0';
'STATE' => { '0' => 'off', 'false' => 'off', '1' => 'on', 'true' => 'on' }
},
'SHUTTER_CONTACT' => {
'STATE' => { '0' => 'close', '1' => 'open', 'false' => 'close', 'true' => 'open' }
'STATE' => { '0' => 'closed', '1' => 'open', 'false' => 'closed', 'true' => 'open' }
},
'SHUTTER_CONTACT_TRANSCEIVER' => {
'STATE' => { '0' => 'close', '1' => 'open', 'false' => 'close', 'true' => 'open' }
'STATE' => { '0' => 'closed', '1' => 'open', 'false' => 'closed', 'true' => 'open' }
},
'ROTARY_HANDLE_SENSOR' => {
'STATE' => { '0' => 'close', '1' => 'tilted', '2' => 'open' }
'STATE' => { '0' => 'closed', '1' => 'tilted', '2' => 'open' }
},
'ROTARY_HANDLE_TRANSCEIVER' => {
'STATE' => { '0' => 'close', '1' => 'tilted', '2' => 'open' }
'STATE' => { '0' => 'closed', '1' => 'tilted', '2' => 'open' }
},
'ALARM_SWITCH_VIRTUAL_RECEIVER' => {
'STATE' => { '0' => 'ok', '1' => 'alarm', 'false' => 'ok', 'true' => 'alarm' }
@ -747,29 +747,29 @@ $HMCCU_CONFIG_VERSION = '5.0';
'STATE' => { '0' => 'off', 'false' => 'off', '1' => 'on', 'true' => 'on', 'off' => '0', 'on' => '1' },
},
'BLIND' => {
'LEVEL' => { '0' => 'close', '100' => 'open', 'close' => '0', 'open' => '100' },
'LEVEL' => { '0' => 'closed', '100' => 'open', 'closed' => '0', 'open' => '100' },
'DIRECTION' => { '0' => 'none', '1' => 'up', '2' => 'down' },
'WORKING' => { '0' => 'no', 'false' => 'no', '1' => 'yes', 'true' => 'yes' }
},
'BLIND_TRANSMITTER' => {
'LEVEL' => { '0' => 'close', '100' => 'open', 'close' => '0', 'open' => '100' }
'LEVEL' => { '0' => 'closed', '100' => 'open', 'closed' => '0', 'open' => '100' }
},
'BLIND_VIRTUAL_RECEIVER' => {
'LEVEL' => { '0' => 'close', '100' => 'open', 'close' => '0', 'open' => '100' },
'LEVEL' => { '0' => 'closed', '100' => 'open', 'closed' => '0', 'open' => '100' },
'DIRECTION' => { '0' => 'none', '1' => 'up', '2' => 'down' },
'WORKING' => { '0' => 'no', 'false' => 'no', '1' => 'yes', 'true' => 'yes' }
},
'JALOUSIE' => {
'LEVEL' => { '0' => 'close', '100' => 'open', 'close' => '0', 'open' => '100' },
'LEVEL_SLATS' => { '0' => 'close', '100' => 'open', 'close' => '0', 'open' => '100' },
'LEVEL' => { '0' => 'closed', '100' => 'open', 'closed' => '0', 'open' => '100' },
'LEVEL_SLATS' => { '0' => 'closed', '100' => 'open', 'closed' => '0', 'open' => '100' },
'DIRECTION' => { '0' => 'none', '1' => 'up', '2' => 'down' },
'WORKING' => { '0' => 'no', 'false' => 'no', '1' => 'yes', 'true' => 'yes' }
},
'SHUTTER_TRANSMITTER' => {
'LEVEL' => { '0' => 'close', '100' => 'open', 'close' => '0', 'open' => '100' }
'LEVEL' => { '0' => 'closed', '100' => 'open', 'closed' => '0', 'open' => '100' }
},
'SHUTTER_VIRTUAL_RECEIVER' => {
'LEVEL' => { '0' => 'close', '100' => 'open', 'close' => '0', 'open' => '100' }
'LEVEL' => { '0' => 'closed', '100' => 'open', 'closed' => '0', 'open' => '100' }
},
'DIMMER' => {
'LEVEL' => { '0' => 'off', '100' => 'on', 'off' => '0', 'on' => '100' },
@ -788,7 +788,7 @@ $HMCCU_CONFIG_VERSION = '5.0';
},
'THERMALCONTROL_TRANSMIT' => {
'SET_TEMPERATURE' => { '4.5' => 'off', '30.5' => 'on' },
'WINDOW_OPEN_REPORTING' => { '0' => 'close', '1' => 'open', 'false' => 'close', 'true' => 'open' }
'WINDOW_OPEN_REPORTING' => { '0' => 'closed', '1' => 'open', 'false' => 'closed', 'true' => 'open' }
},
'CLIMATECONTROL_RT_TRANSCEIVER' => {
'SET_TEMPERATURE' => { '4.5' => 'off', '30.5' => 'on' }
@ -796,7 +796,7 @@ $HMCCU_CONFIG_VERSION = '5.0';
'HEATING_CLIMATECONTROL_TRANSCEIVER' => {
'SET_POINT_TEMPERATURE' => { '4.5' => 'off', '30.5' => 'on' },
'SET_POINT_MODE' => { '0' => 'auto', '1' => 'manual', '2' => 'boost', '3' => 'off' },
'WINDOW_STATE' => { '0' => 'close', '1' => 'open', 'false' => 'close', 'true' => 'open' }
'WINDOW_STATE' => { '0' => 'closed', '1' => 'open', 'false' => 'closed', 'true' => 'open' }
},
'CLIMATECONTROL_REGULATOR' => {
'SETPOINT' => { '4.5' => 'off', '30.5' => 'on' }
@ -805,7 +805,7 @@ $HMCCU_CONFIG_VERSION = '5.0';
'ALARMSTATE' => { '0' => 'noAlarm', '1' => 'alarm', 'false' => 'noAlarm', 'true' => 'alarm' }
},
'WINMATIC' => {
'LEVEL' => { '0' => 'close', '100' => 'open', '-0.005' => 'locked' }
'LEVEL' => { '0' => 'closed', '100' => 'open', '-0.005' => 'locked' }
},
'DEFAULT' => {
'AES_KEY' => { '0' => 'off', 'false' => 'off', '1' => 'on', 'true' => 'on' },