Merge pull request 'fix: remove experimental' (#1) from patch-remove-experimental into dev
Reviewed-on: #1
This commit is contained in:
commit
8101d71c5f
@ -39,7 +39,8 @@ package FHEM::XiaomiBTLESens;
|
|||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use experimental qw /switch/;
|
|
||||||
|
# use experimental qw /switch/; deprecated
|
||||||
|
|
||||||
use POSIX;
|
use POSIX;
|
||||||
use FHEM::Meta;
|
use FHEM::Meta;
|
||||||
@ -279,76 +280,71 @@ sub Attr {
|
|||||||
my ( $cmd, $name, $attrName, $attrVal ) = @_;
|
my ( $cmd, $name, $attrName, $attrVal ) = @_;
|
||||||
my $hash = $defs{$name};
|
my $hash = $defs{$name};
|
||||||
|
|
||||||
given ($attrName) {
|
if ( $attrName eq 'disable' ) {
|
||||||
when ('disable') {
|
if ( $cmd eq 'set' && $attrVal == 1 ) {
|
||||||
if ( $cmd eq 'set' && $attrVal == 1 ) {
|
|
||||||
RemoveInternalTimer($hash);
|
|
||||||
|
|
||||||
readingsSingleUpdate( $hash, 'state', 'disabled', 1 );
|
|
||||||
Log3( $name, 3, "XiaomiBTLESens ($name) - disabled" );
|
|
||||||
}
|
|
||||||
|
|
||||||
elsif ( $cmd eq 'del' ) {
|
|
||||||
Log3( $name, 3, "XiaomiBTLESens ($name) - enabled" );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
when ('disabledForIntervals') {
|
|
||||||
if ( $cmd eq 'set' ) {
|
|
||||||
## no critic (Only use a capturing group if you plan to use the captured value)
|
|
||||||
return
|
|
||||||
'check disabledForIntervals Syntax HH:MM-HH:MM or HH:MM-HH:MM HH:MM-HH:MM ...'
|
|
||||||
if ( $attrVal !~ /^((\d{2}:\d{2})-(\d{2}:\d{2})\s?)+$/x );
|
|
||||||
## use critic
|
|
||||||
Log3( $name, 3,
|
|
||||||
"XiaomiBTLESens ($name) - disabledForIntervals" );
|
|
||||||
stateRequest($hash);
|
|
||||||
}
|
|
||||||
|
|
||||||
elsif ( $cmd eq 'del' ) {
|
|
||||||
Log3( $name, 3, "XiaomiBTLESens ($name) - enabled" );
|
|
||||||
readingsSingleUpdate( $hash, 'state', 'active', 1 );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
when ('interval') {
|
|
||||||
RemoveInternalTimer($hash);
|
RemoveInternalTimer($hash);
|
||||||
|
|
||||||
if ( $cmd eq 'set' ) {
|
readingsSingleUpdate( $hash, 'state', 'disabled', 1 );
|
||||||
if ( $attrVal < 120 ) {
|
Log3( $name, 3, "XiaomiBTLESens ($name) - disabled" );
|
||||||
Log3( $name, 3,
|
}
|
||||||
"XiaomiBTLESens ($name) - interval too small, please use something >= 120 (sec), default is 300 (sec)"
|
|
||||||
);
|
|
||||||
return
|
|
||||||
'interval too small, please use something >= 120 (sec), default is 300 (sec)';
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$hash->{INTERVAL} = $attrVal;
|
|
||||||
Log3( $name, 3,
|
|
||||||
"XiaomiBTLESens ($name) - set interval to $attrVal" );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
elsif ( $cmd eq 'del' ) {
|
elsif ( $cmd eq 'del' ) {
|
||||||
$hash->{INTERVAL} = 300;
|
Log3( $name, 3, "XiaomiBTLESens ($name) - enabled" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
elsif ( $attrName eq 'disabledForIntervals' ) {
|
||||||
|
if ( $cmd eq 'set' ) {
|
||||||
|
## no critic (Only use a capturing group if you plan to use the captured value)
|
||||||
|
return
|
||||||
|
'check disabledForIntervals Syntax HH:MM-HH:MM or HH:MM-HH:MM HH:MM-HH:MM ...'
|
||||||
|
if ( $attrVal !~ /^((\d{2}:\d{2})-(\d{2}:\d{2})\s?)+$/x );
|
||||||
|
## use critic
|
||||||
|
Log3( $name, 3, "XiaomiBTLESens ($name) - disabledForIntervals" );
|
||||||
|
stateRequest($hash);
|
||||||
|
}
|
||||||
|
|
||||||
|
elsif ( $cmd eq 'del' ) {
|
||||||
|
Log3( $name, 3, "XiaomiBTLESens ($name) - enabled" );
|
||||||
|
readingsSingleUpdate( $hash, 'state', 'active', 1 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
elsif ( $attrName eq 'interval' ) {
|
||||||
|
RemoveInternalTimer($hash);
|
||||||
|
|
||||||
|
if ( $cmd eq 'set' ) {
|
||||||
|
if ( $attrVal < 120 ) {
|
||||||
Log3( $name, 3,
|
Log3( $name, 3,
|
||||||
"XiaomiBTLESens ($name) - set interval to default" );
|
"XiaomiBTLESens ($name) - interval too small, please use something >= 120 (sec), default is 300 (sec)"
|
||||||
|
);
|
||||||
|
return
|
||||||
|
'interval too small, please use something >= 120 (sec), default is 300 (sec)';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$hash->{INTERVAL} = $attrVal;
|
||||||
|
Log3( $name, 3,
|
||||||
|
"XiaomiBTLESens ($name) - set interval to $attrVal" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
when ('blockingCallLoglevel') {
|
elsif ( $cmd eq 'del' ) {
|
||||||
if ( $cmd eq 'set' ) {
|
$hash->{INTERVAL} = 300;
|
||||||
$hash->{loglevel} = $attrVal;
|
Log3( $name, 3,
|
||||||
Log3( $name, 3,
|
"XiaomiBTLESens ($name) - set interval to default" );
|
||||||
"XiaomiBTLESens ($name) - set blockingCallLoglevel to $attrVal"
|
}
|
||||||
);
|
}
|
||||||
}
|
elsif ( $attrName eq 'blockingCallLoglevel' ) {
|
||||||
|
if ( $cmd eq 'set' ) {
|
||||||
|
$hash->{loglevel} = $attrVal;
|
||||||
|
Log3( $name, 3,
|
||||||
|
"XiaomiBTLESens ($name) - set blockingCallLoglevel to $attrVal"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
elsif ( $cmd eq 'del' ) {
|
elsif ( $cmd eq 'del' ) {
|
||||||
$hash->{loglevel} = 4;
|
$hash->{loglevel} = 4;
|
||||||
Log3( $name, 3,
|
Log3( $name, 3,
|
||||||
"XiaomiBTLESens ($name) - set blockingCallLoglevel to default"
|
"XiaomiBTLESens ($name) - set blockingCallLoglevel to default"
|
||||||
);
|
);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -400,7 +396,8 @@ sub Notify {
|
|||||||
if (
|
if (
|
||||||
(
|
(
|
||||||
AttrVal( $name, 'model', 'thermoHygroSens' ) eq 'thermoHygroSens'
|
AttrVal( $name, 'model', 'thermoHygroSens' ) eq 'thermoHygroSens'
|
||||||
|| AttrVal( $name, 'model', 'mijiaLYWSD03MMC' ) eq 'mijiaLYWSD03MMC'
|
|| AttrVal( $name, 'model', 'mijiaLYWSD03MMC' ) eq
|
||||||
|
'mijiaLYWSD03MMC'
|
||||||
)
|
)
|
||||||
&& $devname eq $name
|
&& $devname eq $name
|
||||||
&& grep { /^$name.firmware.+/x } @{$events}
|
&& grep { /^$name.firmware.+/x } @{$events}
|
||||||
@ -427,8 +424,9 @@ sub stateRequest {
|
|||||||
if (
|
if (
|
||||||
CallBattery_IsUpdateTimeAgeToOld(
|
CallBattery_IsUpdateTimeAgeToOld(
|
||||||
$hash,
|
$hash,
|
||||||
$CallBatteryAge{ AttrVal( $name, 'BatteryFirmwareAge',
|
$CallBatteryAge{
|
||||||
'24h' ) }
|
AttrVal( $name, 'BatteryFirmwareAge', '24h' )
|
||||||
|
}
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -506,13 +504,15 @@ sub Set {
|
|||||||
if ( $cmd eq 'devicename' ) {
|
if ( $cmd eq 'devicename' ) {
|
||||||
return 'usage: devicename <name>' if ( scalar( @{$arg_ref} ) < 1 );
|
return 'usage: devicename <name>' if ( scalar( @{$arg_ref} ) < 1 );
|
||||||
|
|
||||||
$mod = 'write';
|
$mod = 'write';
|
||||||
$handle = $XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename};
|
$handle =
|
||||||
$value = CreateDevicenameHEX( makeDeviceName( $arg_ref->[0] ) );
|
$XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename};
|
||||||
|
$value = CreateDevicenameHEX( makeDeviceName( $arg_ref->[0] ) );
|
||||||
|
|
||||||
}
|
}
|
||||||
elsif ( $cmd eq 'resetBatteryTimestamp' ) {
|
elsif ( $cmd eq 'resetBatteryTimestamp' ) {
|
||||||
return 'usage: resetBatteryTimestamp' if ( scalar( @{$arg_ref} ) != 0 );
|
return 'usage: resetBatteryTimestamp'
|
||||||
|
if ( scalar( @{$arg_ref} ) != 0 );
|
||||||
|
|
||||||
$hash->{helper}{updateTimeCallBattery} = 0;
|
$hash->{helper}{updateTimeCallBattery} = 0;
|
||||||
return;
|
return;
|
||||||
@ -567,8 +567,9 @@ sub Get {
|
|||||||
elsif ( $cmd eq 'devicename' ) {
|
elsif ( $cmd eq 'devicename' ) {
|
||||||
return "usage: devicename" if ( scalar( @{$arg_ref} ) != 0 );
|
return "usage: devicename" if ( scalar( @{$arg_ref} ) != 0 );
|
||||||
|
|
||||||
$mod = 'read';
|
$mod = 'read';
|
||||||
$handle = $XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename};
|
$handle =
|
||||||
|
$XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename};
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -748,7 +749,8 @@ qx(ssh $sshHost '$psCommand | grep -E "$gatttoolCmdlineStaticEscaped"')
|
|||||||
if ( !defined( $gtResult[0] ) );
|
if ( !defined( $gtResult[0] ) );
|
||||||
|
|
||||||
$loop++;
|
$loop++;
|
||||||
} while ( $loop < 5 && ( $returnCode != 0 && $returnCode != 124 ) );
|
} while ( $loop < 5
|
||||||
|
&& ( $returnCode != 0 && $returnCode != 124 ) );
|
||||||
Log3( $name, 3,
|
Log3( $name, 3,
|
||||||
"XiaomiBTLESens ($name) - ExecGatttool_Run: errorcode: \"$returnCode\", ErrorString: \"$returnString\""
|
"XiaomiBTLESens ($name) - ExecGatttool_Run: errorcode: \"$returnCode\", ErrorString: \"$returnString\""
|
||||||
) if ( $returnCode != 0 && $returnCode != 124 );
|
) if ( $returnCode != 0 && $returnCode != 124 );
|
||||||
@ -903,120 +905,111 @@ sub ProcessingNotification {
|
|||||||
|
|
||||||
}
|
}
|
||||||
elsif ( AttrVal( $name, 'model', 'none' ) eq 'thermoHygroSens' ) {
|
elsif ( AttrVal( $name, 'model', 'none' ) eq 'thermoHygroSens' ) {
|
||||||
given ($handle) {
|
if ( $handle eq '0x18' ) {
|
||||||
when ('0x18') {
|
### Thermo/Hygro Sens - Read Battery Data
|
||||||
### Thermo/Hygro Sens - Read Battery Data
|
Log3( $name, 4,
|
||||||
Log3( $name, 4,
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x18"
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x18"
|
);
|
||||||
);
|
|
||||||
|
|
||||||
$readings = ThermoHygroSensHandle0x18( $hash, $notification );
|
$readings = ThermoHygroSensHandle0x18( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x10') {
|
elsif ( $handle eq '0x10' ) {
|
||||||
### Thermo/Hygro Sens - Read Sensor Data
|
### Thermo/Hygro Sens - Read Sensor Data
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x10"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x10"
|
||||||
);
|
);
|
||||||
|
|
||||||
$readings = ThermoHygroSensHandle0x10( $hash, $notification );
|
$readings = ThermoHygroSensHandle0x10( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x24') {
|
elsif ( $handle eq '0x24' ) {
|
||||||
### Thermo/Hygro Sens - Read Firmware Data
|
### Thermo/Hygro Sens - Read Firmware Data
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x24"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x24"
|
||||||
);
|
);
|
||||||
|
|
||||||
$readings = ThermoHygroSensHandle0x24( $hash, $notification );
|
$readings = ThermoHygroSensHandle0x24( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x3') {
|
elsif ( $handle eq '0x3' ) {
|
||||||
### Thermo/Hygro Sens - Read and Write Devicename
|
### Thermo/Hygro Sens - Read and Write Devicename
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x3"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x3" );
|
||||||
);
|
|
||||||
|
|
||||||
return CreateParamGatttool( $hash, 'read',
|
return CreateParamGatttool( $hash, 'read',
|
||||||
$XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename} )
|
$XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename} )
|
||||||
if ( $gattCmd ne 'read' );
|
if ( $gattCmd ne 'read' );
|
||||||
$readings = ThermoHygroSensHandle0x3( $hash, $notification );
|
$readings = ThermoHygroSensHandle0x3( $hash, $notification );
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elsif ( AttrVal( $name, 'model', 'none' ) eq 'mijiaLYWSD03MMC' ) {
|
elsif ( AttrVal( $name, 'model', 'none' ) eq 'mijiaLYWSD03MMC' ) {
|
||||||
given ($handle) {
|
if ( $handle eq '0x1b' ) {
|
||||||
when ('0x1b') {
|
### mijiaLYWSD03MMC - Read Battery Data
|
||||||
### mijiaLYWSD03MMC - Read Battery Data
|
Log3( $name, 4,
|
||||||
Log3( $name, 4,
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x1b"
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x1b"
|
);
|
||||||
);
|
|
||||||
|
|
||||||
$readings = mijiaLYWSD03MMC_Handle0x1b( $hash, $notification );
|
$readings = mijiaLYWSD03MMC_Handle0x1b( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x38') {
|
elsif ( $handle eq '0x38' ) {
|
||||||
### mijiaLYWSD03MMC - Read Sensor Data
|
### mijiaLYWSD03MMC - Read Sensor Data
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x38"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x38"
|
||||||
);
|
);
|
||||||
|
|
||||||
$readings = mijiaLYWSD03MMC_Handle0x38( $hash, $notification );
|
$readings = mijiaLYWSD03MMC_Handle0x38( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x12') {
|
elsif ( $handle eq '0x12' ) {
|
||||||
### mijiaLYWSD03MMC - Read Firmware Data
|
### mijiaLYWSD03MMC - Read Firmware Data
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x12"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x12"
|
||||||
);
|
);
|
||||||
|
|
||||||
$readings = mijiaLYWSD03MMC_Handle0x12( $hash, $notification );
|
$readings = mijiaLYWSD03MMC_Handle0x12( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x3') {
|
elsif ( $handle eq '0x3' ) {
|
||||||
### mijiaLYWSD03MMC - Read and Write Devicename
|
### mijiaLYWSD03MMC - Read and Write Devicename
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x3"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x3" );
|
||||||
);
|
|
||||||
|
|
||||||
return CreateParamGatttool( $hash, 'read',
|
return CreateParamGatttool( $hash, 'read',
|
||||||
$XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename} )
|
$XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename} )
|
||||||
unless ( $gattCmd eq 'read' );
|
unless ( $gattCmd eq 'read' );
|
||||||
$readings = mijiaLYWSD03MMC_Handle0x3( $hash, $notification );
|
$readings = mijiaLYWSD03MMC_Handle0x3( $hash, $notification );
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elsif ( AttrVal( $name, 'model', 'none' ) eq 'clearGrassSens' ) {
|
elsif ( AttrVal( $name, 'model', 'none' ) eq 'clearGrassSens' ) {
|
||||||
given ($handle) {
|
if ( $handle eq '0x3b' ) {
|
||||||
when ('0x3b') {
|
### Clear Grass Sens - Read Battery Data
|
||||||
### Clear Grass Sens - Read Battery Data
|
Log3( $name, 4,
|
||||||
Log3( $name, 4,
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x3b"
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x3b"
|
);
|
||||||
);
|
|
||||||
|
|
||||||
$readings = ClearGrassSensHandle0x3b( $hash, $notification );
|
$readings = ClearGrassSensHandle0x3b( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x1e') {
|
elsif ( $handle eq '0x1e' ) {
|
||||||
### Clear Grass Sens - Read Sensor Data
|
### Clear Grass Sens - Read Sensor Data
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x1e"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x1e"
|
||||||
);
|
);
|
||||||
|
|
||||||
$readings = ClearGrassSensHandle0x1e( $hash, $notification );
|
$readings = ClearGrassSensHandle0x1e( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x2a') {
|
elsif ( $handle eq '0x2a' ) {
|
||||||
### Clear Grass Sens - Read Firmware Data
|
### Clear Grass Sens - Read Firmware Data
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x2a"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x2a"
|
||||||
);
|
);
|
||||||
|
|
||||||
$readings = ClearGrassSensHandle0x2a( $hash, $notification );
|
$readings = ClearGrassSensHandle0x2a( $hash, $notification );
|
||||||
}
|
}
|
||||||
when ('0x3') {
|
elsif ( $handle eq '0x3' ) {
|
||||||
### Clear Grass Sens - Read and Write Devicename
|
### Clear Grass Sens - Read and Write Devicename
|
||||||
Log3( $name, 4,
|
Log3( $name, 4,
|
||||||
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x3"
|
"XiaomiBTLESens ($name) - ProcessingNotification: handle 0x3" );
|
||||||
);
|
|
||||||
|
|
||||||
return CreateParamGatttool( $hash, 'read',
|
return CreateParamGatttool( $hash, 'read',
|
||||||
$XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename} )
|
$XiaomiModels{ AttrVal( $name, 'model', '' ) }{devicename} )
|
||||||
if ( $gattCmd ne 'read' );
|
if ( $gattCmd ne 'read' );
|
||||||
$readings = ClearGrassSensHandle0x3( $hash, $notification );
|
$readings = ClearGrassSensHandle0x3( $hash, $notification );
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user