2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

66_EseraOneWire: fix MatchList

git-svn-id: https://svn.fhem.de/fhem/trunk@25555 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
pizmus 2022-01-24 22:18:14 +00:00
parent 3481b6bff7
commit 1ac7d1eed9
4 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # 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. # Do not insert empty lines here, update check depends on it.
- bugfix: 66_EseraOneWire: fix match list
- change: 49_SSCAM: module ready for SVS 9.0.0 forum:#125646 - change: 49_SSCAM: module ready for SVS 9.0.0 forum:#125646
- bugfix: 59_LuftdatenInfo: fix API endpoint - bugfix: 59_LuftdatenInfo: fix API endpoint
- bugfix: 10_KNX: fix dpt14 set 0 - bugfix: 10_KNX: fix dpt14 set 0

View File

@ -39,7 +39,7 @@ sub
EseraDigitalInOut_Initialize($) EseraDigitalInOut_Initialize($)
{ {
my ($hash) = @_; my ($hash) = @_;
$hash->{Match} = "DS2408"; $hash->{Match} = "DS2408|11220|11233|11228|11229|11216|SYS1|SYS2";
$hash->{DefFn} = "EseraDigitalInOut_Define"; $hash->{DefFn} = "EseraDigitalInOut_Define";
$hash->{UndefFn} = "EseraDigitalInOut_Undef"; $hash->{UndefFn} = "EseraDigitalInOut_Undef";
$hash->{ParseFn} = "EseraDigitalInOut_Parse"; $hash->{ParseFn} = "EseraDigitalInOut_Parse";

View File

@ -36,7 +36,7 @@ sub
EseraMulti_Initialize($) EseraMulti_Initialize($)
{ {
my ($hash) = @_; my ($hash) = @_;
$hash->{Match} = "DS2438"; $hash->{Match} = "DS2438|11121|11132|11133|11134|11135";
$hash->{DefFn} = "EseraMulti_Define"; $hash->{DefFn} = "EseraMulti_Define";
$hash->{UndefFn} = "EseraMulti_Undef"; $hash->{UndefFn} = "EseraMulti_Undef";
$hash->{ParseFn} = "EseraMulti_Parse"; $hash->{ParseFn} = "EseraMulti_Parse";

View File

@ -83,11 +83,11 @@ EseraOneWire_Initialize($)
$readingFnAttributes; $readingFnAttributes;
$hash->{Clients} = ":EseraDigitalInOut:EseraTemp:EseraMulti:EseraAnalogInOut:EseraIButton:EseraCount:EseraShutter:"; $hash->{Clients} = ":EseraDigitalInOut:EseraTemp:EseraMulti:EseraAnalogInOut:EseraIButton:EseraCount:EseraShutter:EseraDimmer:";
$hash->{MatchList} = { "1:EseraDigitalInOut" => "^DS2408|^11220|^11233|^11228|^11229|^11216|^SYS1|^SYS2", $hash->{MatchList} = { "1:EseraDigitalInOut" => "^DS2408|^11220|^11233|^11228|^11229|^11216|^SYS1|^SYS2",
"2:EseraTemp" => "^DS1820", "2:EseraTemp" => "^DS1820",
"3:EseraMulti" => "^DS2438|^11121|^11132|^11133|^11134|^11135", "3:EseraMulti" => "^DS2438|^11121|^11132|^11133|^11134|^11135",
"4:EseraAnalogInOut" => "^SYS3", "4:EseraAnalogInOut" => "^SYS3|^DS2450|^11202|^11203|^11208|^11219",
"5:EseraIButton" => "^DS2401", "5:EseraIButton" => "^DS2401",
"6:EseraCount" => "^DS2423", "6:EseraCount" => "^DS2423",
"7:EseraShutter" => "^11231|^11209", "7:EseraShutter" => "^11231|^11209",