mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-20 01:06:04 +00:00
73_AutoShuttersControl: fix regex to detect position event with dot's
git-svn-id: https://svn.fhem.de/fhem/trunk@25115 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
dc629a6842
commit
13af66ba05
@ -1,5 +1,7 @@
|
||||
# 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.
|
||||
- bugfix: 73_AutoShuttersControl: fix regex to detect position
|
||||
event with dot's
|
||||
- change: 10_EIB: Move to deprecated
|
||||
- bugfix: 73_AutoShuttersControl: fix ExternalTrigger,
|
||||
fix set rainstate by night
|
||||
|
@ -515,7 +515,7 @@ m{^(ATTR|DELETEATTR)\s(.*ASC_Time_Up_WE_Holiday|.*ASC_Up|.*ASC_Down|.*ASC_AutoAs
|
||||
EventProcessingGeneral( $hash, undef, join( ' ', @{$events} ) );
|
||||
}
|
||||
}
|
||||
elsif ( grep m{^($posReading):\s\d{1,3}$}xms, @{$events} ) {
|
||||
elsif ( grep m{^($posReading):\s\d{1,3}(\.\d{1,3})?$}xms, @{$events} ) {
|
||||
ASC_Debug( 'Notify: '
|
||||
. ' ASC_Pos_Reading Event vom Rollo '
|
||||
. $devname
|
||||
|
Loading…
x
Reference in New Issue
Block a user