mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 03:06:37 +00:00
DevIo.pm: noDevIoState changed to devioNoSTATE (Forum #120940)
git-svn-id: https://svn.fhem.de/fhem/trunk@24597 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
6ab2420ae0
commit
268ae36376
@ -208,7 +208,7 @@ CUL_Define($$)
|
||||
$hash->{CMDS} = "";
|
||||
$hash->{Clients} = $clientsSlowRF;
|
||||
$hash->{MatchList} = \%matchListSlowRF;
|
||||
$hash->{noDevIoSTATE} = 1;
|
||||
$hash->{devioNoSTATE} = 1;
|
||||
|
||||
if($dev eq "none") {
|
||||
Log3 $name, 1, "$name device is none, commands will be echoed only";
|
||||
|
@ -53,7 +53,7 @@ FBAHA_Define($$)
|
||||
$hash->{Clients} = ":FBDECT:";
|
||||
my %matchList = ( "1:FBDECT" => ".*" );
|
||||
$hash->{MatchList} = \%matchList;
|
||||
$hash->{noDevIoSTATE} = 1;
|
||||
$hash->{devioNoSTATE} = 1;
|
||||
|
||||
DevIo_CloseDev($hash);
|
||||
$hash->{DeviceName} = $dev;
|
||||
|
@ -92,7 +92,7 @@ ZWCUL_Define($$)
|
||||
my %matchList = ( "1:ZWave" => "^[0-9A-Fa-f]+\$",
|
||||
"2:STACKABLE"=>"^\\*" );
|
||||
$hash->{MatchList} = \%matchList;
|
||||
$hash->{noDevIoSTATE} = 1;
|
||||
$hash->{devioNoSTATE} = 1;
|
||||
|
||||
if($dev eq "none") {
|
||||
Log3 $name, 1, "$name device is none, commands will be echoed only";
|
||||
|
@ -154,7 +154,7 @@ ZWDongle_Define($$)
|
||||
$hash->{DeviceName} = $dev;
|
||||
$hash->{CallbackNr} = 0;
|
||||
$hash->{nrNAck} = 0;
|
||||
$hash->{noDevIoSTATE} = 1;
|
||||
$hash->{devioNoSTATE} = 1;
|
||||
my @empty;
|
||||
$hash->{SendStack} = \@empty;
|
||||
ZWDongle_shiftSendStack($hash, 0, 5, undef); # Init variables
|
||||
|
@ -20,7 +20,7 @@ DevIo_setStates($$)
|
||||
{
|
||||
my ($hash, $val) = @_;
|
||||
setReadingsVal($hash, "state", $val, TimeNow());
|
||||
if($hash->{noDevIoSTATE}) {
|
||||
if($hash->{devioNoSTATE}) {
|
||||
evalStateFormat($hash);
|
||||
} else {
|
||||
$hash->{STATE} = $val;
|
||||
|
Loading…
x
Reference in New Issue
Block a user