2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

Set corrected

git-svn-id: https://svn.fhem.de/fhem/trunk@3010 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
wherzig 2013-04-01 11:32:30 +00:00
parent dd8e8dabe7
commit e22e59456d
2 changed files with 0 additions and 29 deletions

View File

@ -91,7 +91,6 @@ RFXCOM_Initialize($)
$hash->{DefFn} = "RFXCOM_Define";
$hash->{UndefFn} = "RFXCOM_Undef";
$hash->{GetFn} = "RFXCOM_Get";
$hash->{SetFn} = "RFXCOM_Set";
$hash->{StateFn} = "RFXCOM_SetState";
$hash->{AttrList}= "dummy:1,0 do_not_init:1:0 longids loglevel:0,1,2,3,4,5,6";
$hash->{ShutdownFn} = "RFXCOM_Shutdown";
@ -187,20 +186,6 @@ RFXCOM_Shutdown($)
return undef;
}
#####################################
sub
RFXCOM_Set($@)
{
my ($hash, @a) = @_;
my $msg;
my $name=$a[0];
my $reading= $a[1];
$msg="$name => No Set function ($reading) implemented";
return $msg;
}
#####################################
sub
RFXCOM_Get($@)

View File

@ -66,7 +66,6 @@ TRX_Initialize($)
$hash->{DefFn} = "TRX_Define";
$hash->{UndefFn} = "TRX_Undef";
$hash->{GetFn} = "TRX_Get";
$hash->{SetFn} = "TRX_Set";
$hash->{StateFn} = "TRX_SetState";
$hash->{AttrList}= "do_not_notify:1,0 dummy:1,0 do_not_init:1:0 addvaltrigger:1:0 longids loglevel:0,1,2,3,4,5,6";
$hash->{ShutdownFn} = "TRX_Shutdown";
@ -158,19 +157,6 @@ TRX_Shutdown($)
return undef;
}
#####################################
sub
TRX_Set($@)
{
my ($hash, @a) = @_;
my $msg;
my $name=$a[0];
my $reading= $a[1];
$msg="$name => No Set function ($reading) implemented";
return $msg;
}
#####################################
sub
TRX_Get($@)