2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-22 08:11:44 +00:00

98_GoogleAuth.pm: under development

git-svn-id: https://svn.fhem.de/fhem/trunk@13074 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2017-01-14 23:47:05 +00:00
parent 393b768687
commit 9d0ae31080

View File

@ -1,4 +1,4 @@
$Id$ # $Id$
package main; package main;
use strict; use strict;
@ -20,11 +20,17 @@ sub GoogleAuth_Initialize($) {
$hash->{DeleteFn} = "GoogleAuth_Delete"; $hash->{DeleteFn} = "GoogleAuth_Delete";
$hash->{SetFn} = "GoogleAuth_Set"; $hash->{SetFn} = "GoogleAuth_Set";
$hash->{GetFn} = "GoogleAuth_Get"; $hash->{GetFn} = "GoogleAuth_Get";
$hash->{detailFn} = "GoogleAuth_Detail";
# $hash->{AttrFn} = "GoogleAuth_Attr"; # $hash->{AttrFn} = "GoogleAuth_Attr";
$hash->{AttrList} = "ga_qrsize ". $hash->{AttrList} = "ga_qrsize ".
"$readingFnAttributes"; "$readingFnAttributes";
} }
sub GoogleAuth_Detail {
#Debug "detailFn called";
return;
}
sub GoogleAuth_Define($$) { sub GoogleAuth_Define($$) {
my ($hash, $def) = @_; my ($hash, $def) = @_;
my $name = $hash->{NAME}; my $name = $hash->{NAME};