mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-01 20:20:10 +00:00

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@4345 2b470e98-0d58-463d-a4d8-8e2adae1ed80
243 lines
5.5 KiB
Perl
243 lines
5.5 KiB
Perl
##############################################
|
||
# $Id: EGPM2LAN.pm 2013-12-08 10:11:20Z alexus $
|
||
#
|
||
# (c) 2013 Copyright: Alex Storny (moselking at arcor dot de)
|
||
# All rights reserved
|
||
#
|
||
# This script free software; you can redistribute it and/or modify
|
||
# it under the terms of the GNU General Public License as published by
|
||
# the Free Software Foundation; either version 2 of the License, or
|
||
# any later version.
|
||
#
|
||
# The GNU General Public License can be found at
|
||
# http://www.gnu.org/copyleft/gpl.html.
|
||
# A copy is found in the textfile GPL.txt and important notices to the license
|
||
# from the author is found in LICENSE.txt distributed with these scripts.
|
||
#
|
||
# This script is distributed in the hope that it will be useful,
|
||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
# GNU General Public License for more details.
|
||
#
|
||
################################################################
|
||
# -> Module 17_EGPM2LAN.pm (Host) needed.
|
||
################################################################
|
||
package main;
|
||
|
||
use strict;
|
||
use warnings;
|
||
|
||
sub
|
||
EGPM_Initialize($)
|
||
{
|
||
my ($hash) = @_;
|
||
|
||
$hash->{SetFn} = "EGPM_Set";
|
||
$hash->{GetFn} = "EGPM_Get";
|
||
$hash->{DefFn} = "EGPM_Define";
|
||
$hash->{AttrList} = "loglevel:0,1,2,3,4,5,6". $readingFnAttributes;
|
||
$hash->{UndefFn} = "EGPM_Undef";
|
||
}
|
||
|
||
###################################
|
||
sub
|
||
EGPM_Set($@)
|
||
{
|
||
my ($hash, @a) = @_;
|
||
my $name = shift @a;
|
||
my $parent = $hash->{IODEV};
|
||
my $loglevel = GetLogLevel($name,4);
|
||
|
||
return "no set value specified" if(int(@a) < 1);
|
||
return "Unknown argument ?, choose one of off:noArg on:noArg toggle:noArg" if($a[0] eq "?");
|
||
|
||
if(not Value($parent))
|
||
{
|
||
my $u = "$parent device not found. Please define EGPM2LAN device.";
|
||
Log $loglevel, $u;
|
||
return $u;
|
||
}
|
||
|
||
my $v = join(" ", @a);
|
||
Log $loglevel, "EGPM set $name $v";
|
||
CommandSet(undef,$hash->{IODEV}." $v ".$hash->{SOCKETNR});
|
||
return undef;
|
||
}
|
||
|
||
###################################
|
||
sub
|
||
EGPM_Get($@)
|
||
{
|
||
my ($hash, @a) = @_;
|
||
my $what;
|
||
|
||
return "argument is missing" if(int(@a) != 2);
|
||
|
||
$what = $a[1];
|
||
|
||
if($what =~ /^(state)$/)
|
||
{
|
||
if(defined($hash->{READINGS}{$what}))
|
||
{
|
||
return $hash->{READINGS}{$what}{VAL};
|
||
}
|
||
else
|
||
{
|
||
return "reading not found: $what";
|
||
}
|
||
}
|
||
else
|
||
{
|
||
return "Unknown argument $what, choose one of state:noArg".(exists($hash->{READINGS}{output})?" output:noArg":"");
|
||
}
|
||
}
|
||
|
||
#####################################
|
||
sub
|
||
EGPM_Define($$)
|
||
{
|
||
my ($hash, $def) = @_;
|
||
my @a = split("[ \t][ \t]*", $def);
|
||
|
||
my $u = "wrong syntax: use define <name> EGPM <Device> <socketNr.>";
|
||
|
||
return $u if(int(@a) < 4);
|
||
|
||
my $name = $a[0];
|
||
my $parent = $a[2];
|
||
my $socket = $a[3];
|
||
|
||
$hash->{IODEV} = $parent;
|
||
$hash->{SOCKETNR} = $socket;
|
||
$hash->{NAME} = $name;
|
||
|
||
$modules{EGPM}{defptr}{$parent.$socket} = $hash;
|
||
|
||
if (defined($attr{$parent}{room}))
|
||
{
|
||
$attr{$name}{room} = $attr{$parent}{room};
|
||
}
|
||
$hash->{STATE} = "initialized";
|
||
|
||
return undef;
|
||
}
|
||
|
||
#####################################
|
||
sub
|
||
EGPM_Undef($$)
|
||
{
|
||
my ($hash, $name) = @_;
|
||
my $parent = $hash->{IODEV};
|
||
my $socket = $hash->{SOCKETNR};
|
||
|
||
Log GetLogLevel($name,4), "Delete ".$parent.$socket;
|
||
delete $modules{EGPM}{defptr}{$parent.$socket} ;
|
||
|
||
return undef;
|
||
}
|
||
|
||
1;
|
||
|
||
=pod
|
||
=begin html
|
||
|
||
<a name="EGPM"></a>
|
||
<h3>EGPM Socket</h3>
|
||
<ul>
|
||
|
||
Defines a Socket from EGPM2LAN Module. If the global Module AUTOCREATE is enabled,
|
||
this device will be created automatically. For manual Setup, pls. see the description of <a href="#EGPM2LAN">EGPM2LAN</a>.
|
||
<br><br>
|
||
|
||
<a name="EGPMdefine"></a>
|
||
<b>Define</b>
|
||
<ul>
|
||
<code>define <name> EGPM <device> <socket-nr></code>
|
||
<br>
|
||
</ul>
|
||
<br>
|
||
|
||
<a name="EGPMset"></a>
|
||
<b>Set</b>
|
||
<code>
|
||
<ul>set <name> <[on|off|toggle]></code><br>
|
||
Switches the socket on or of.
|
||
</ul><br>
|
||
Example:
|
||
<ul>
|
||
<code>define lamp1 EGPM mainswitch 1</code><br>
|
||
<code>set lamp1 on</code><br>
|
||
</ul>
|
||
<br>
|
||
|
||
<a name="EGPMget"></a>
|
||
<b>Get</b> <ul>N/A</ul><br>
|
||
|
||
<a name="EGPMattr"></a>
|
||
<b>Attributes</b>
|
||
<ul>
|
||
<li><a href="#loglevel">loglevel</a></li>
|
||
<li><a href="#readingFnAttributes">readingFnAttributes</a></li>
|
||
</ul>
|
||
<br>
|
||
<a name="EGPM2LANevents"></a>
|
||
<b>Generated events</b>
|
||
<ul>
|
||
<li>EGPM <name> <[on|off]></li>
|
||
</ul>
|
||
|
||
</ul>
|
||
|
||
=end html
|
||
=begin html_DE
|
||
|
||
<a name="EGPM"></a>
|
||
<h3>EGPM Steckdose</h3>
|
||
<ul>
|
||
|
||
Definiert eine einzelne Netzwerk-Steckdose vom EGPM2LAN. Diese Definition wird beim Einrichten eines EGPM2LAN automatisch erstellt,
|
||
wenn das globale FHEM-Attribut AUTOCREATE aktiviert wurde. F<>r weitere Informationen, siehe Beschreibung von <a href="#EGPM2LAN">EGPM2LAN</a>.
|
||
<br><br>
|
||
|
||
<a name="EGPMdefine"></a>
|
||
<b>Define</b>
|
||
<ul>
|
||
<code>define <name> EGPM <device> <socket-nr></code>
|
||
<br>
|
||
</ul>
|
||
<br>
|
||
|
||
<a name="EGPMset"></a>
|
||
<b>Set</b>
|
||
<code>
|
||
<ul>set <name> <[on|off|toggle]></code><br>
|
||
Schaltet die Steckdose ein oder aus.
|
||
</ul><br>
|
||
Beispiel:
|
||
<ul>
|
||
<code>define lampe1 EGPM steckdose 1</code><br>
|
||
<code>set lampe1 on</code><br>
|
||
</ul>
|
||
<br>
|
||
|
||
<a name="EGPMget"></a>
|
||
<b>Get</b> <ul>N/A</ul>
|
||
<br>
|
||
|
||
<a name="EGPMattr"></a>
|
||
<b>Attributes</b>
|
||
<ul>
|
||
<li><a href="#loglevel">loglevel</a></li>
|
||
<li><a href="#readingFnAttributes">readingFnAttributes</a></li>
|
||
</ul>
|
||
<br>
|
||
|
||
<a name="EGPM2LANevents"></a>
|
||
<b>Generated events</b>
|
||
<ul>
|
||
<li>EGPM <name> <[on|off]></li>
|
||
</ul>
|
||
</ul>
|
||
=end html_DE
|
||
|
||
=cut |