2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-15 04:20:56 +00:00

45_TR6_TRX_ELSE.pm: regex TRX_ELSE bug fix

git-svn-id: https://svn.fhem.de/fhem/trunk@10814 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
wherzig 2016-02-13 12:56:21 +00:00
parent 75dc9a07e2
commit 3ae59cbf30

View File

@ -41,7 +41,7 @@ TRX_ELSE_Initialize($)
{
my ($hash) = @_;
$hash->{Match} = "^..(0[0-9a-f]|1[a-f]|2[1-9a-f]|3[0-9a-f]|4[0-9a-d]|4f|53|59|5e|5f|[6-9a-f][0-9a-f]).*"
$hash->{Match} = "^..(0[0-9a-f]|1[a-f]|2[1-9a-f]|3[0-9a-f]|4[0-9a-d]|4f|53|59|5e|5f|[6-9a-f][0-9a-f]).*";
$hash->{DefFn} = "TRX_ELSE_Define";
$hash->{UndefFn} = "TRX_ELSE_Undef";
$hash->{ParseFn} = "TRX_ELSE_Parse";