mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-02 01:40:34 +00:00
1757b64e15
git-svn-id: https://svn.fhem.de/fhem/trunk@3767 2b470e98-0d58-463d-a4d8-8e2adae1ed80
637 lines
20 KiB
Perl
637 lines
20 KiB
Perl
##############################################
|
|
# $Id$
|
|
package main;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
# Problems:
|
|
# - Not all CUL_EM devices return a power
|
|
# - Not all CUL_WS devices return a temperature
|
|
# - No plot files for BS/CUL_FHTTK/USF1000/X10/WS300
|
|
# - check "UNDEFINED" parameters for BS/USF1000/X10
|
|
|
|
my %flogpar = (
|
|
"CUL_EM.*"
|
|
=> { GPLOT => "power8:Power,", FILTER => "%NAME:CNT.*" },
|
|
"CUL_WS.*"
|
|
=> { GPLOT => "temp4hum6:Temp/Hum,", FILTER => "%NAME:T:.*" },
|
|
"CUL_FHTTK.*"
|
|
=> { GPLOT => "fht80tf:Window,", FILTER => "%NAME" },
|
|
"FHT.*"
|
|
=> { GPLOT => "fht:Temp/Act,", FILTER => "%NAME" },
|
|
"HMS100TFK_.*"
|
|
=> { GPLOT => "fht80tf:Contact,", FILTER => "%NAME" },
|
|
"HMS100T[F]?_.*"
|
|
=> { GPLOT => "temp4hum6:Temp/Hum,", FILTER => "%NAME:T:.*" },
|
|
"KS300.*"
|
|
=> { GPLOT => "temp4rain10:Temp/Rain,hum6wind8:Wind/Hum,",
|
|
FILTER => "%NAME:T:.*" },
|
|
|
|
# Oregon sensors:
|
|
# * temperature
|
|
"(THR128|THWR288A|THN132N|THGR132N).*"
|
|
=> { GPLOT => "temp4:Temp,", FILTER => "%NAME" },
|
|
# * temperature, humidity
|
|
"(THGR228N|THGR810|THGR918|THGR328N|RTGR328N|WTGR800_T|WT450H).*"
|
|
=> { GPLOT => "temp4hum4:Temp/Hum,", FILTER => "%NAME" },
|
|
# * temperature, humidity, pressure
|
|
"(BTHR918N|BTHR918|BTHR918N).*"
|
|
=> { GPLOT => "rain4press4:Temp/Press,temp4hum4:Temp/Hum,",
|
|
FILTER => "%NAME" },
|
|
# * anenometer
|
|
"(WGR800|WGR918|WTGR800_A).*"
|
|
=> { GPLOT => "wind4windDir4:WindDir/WindSpeed,", FILTER => "%NAME" },
|
|
# * Oregon sensors: Rain gauge
|
|
"(PCR800|RGR918).*"
|
|
=> { GPLOT => "rain4:RainRate", FILTER => "%NAME" },
|
|
|
|
# X10 sensors received by RFXCOM
|
|
"(RFXX10SEC|TRX_DS10A).*"
|
|
=> { GPLOT => "fht80tf:Window,", FILTER => "%NAME" },
|
|
# X10 Window sensors received by RFXTRX
|
|
"TRX_DS10A.*"
|
|
=> { GPLOT => "fht80tf:Window,", FILTER => "%NAME" },
|
|
# TX3 temperature sensors received by RFXTRX
|
|
"TX3.*"
|
|
=> { GPLOT => "temp4hum4:Temp/Hum,", FILTER => "%NAME" },
|
|
|
|
|
|
# USB-WDE1
|
|
"USBWX_[0-8]"
|
|
=> { GPLOT => "temp4hum6:Temp/Hum,", FILTER => "%NAME" },
|
|
"USBWX_ks300"
|
|
=> { GPLOT => "temp4hum6:Temp/Hum,temp4rain10:Temp/Rain,hum6wind8:Wind/Hum,",
|
|
FILTER => "%NAME:T:.*" },
|
|
|
|
# HomeMatic
|
|
"CUL_HM_THSensor.*"
|
|
=> { GPLOT => "temp4hum6:Temp/Hum,", FILTER => "%NAME:T:.*" },
|
|
"CUL_HM_KS550.*"
|
|
=> { GPLOT => "temp4rain10:Temp/Rain,hum6wind8:Wind/Hum,",
|
|
FILTER => "%NAME:T:.*" },
|
|
"CUL_HM_HM-CC-TC.*"
|
|
=> { GPLOT => "temp4hum6:Temp/Hum,", FILTER => "%NAME:T:.*" },
|
|
|
|
# Lacrosse TX
|
|
"CUL_TX.*"
|
|
=> { GPLOT => "temp4hum4:Temp/Hum,", FILTER => "%NAME" },
|
|
|
|
"FBDECT.*"
|
|
=> { GPLOT => "power4:Power,", FILTER => "%NAME:power\\x3a.*",
|
|
ATTR => "event-min-interval:power:120" },
|
|
);
|
|
|
|
# Do not create FileLog for the following devices.
|
|
my @flog_blacklist = (
|
|
"CUL_RFR.*"
|
|
);
|
|
|
|
|
|
#####################################
|
|
sub
|
|
autocreate_Initialize($)
|
|
{
|
|
my ($hash) = @_;
|
|
$hash->{DefFn} = "autocreate_Define";
|
|
$hash->{NotifyFn} = "autocreate_Notify";
|
|
$hash->{AttrFn} = "autocreate_Attr";
|
|
$hash->{AttrList}= "autosave filelog device_room weblink weblink_room " .
|
|
"disable ignoreTypes";
|
|
my %ahash = ( Fn=>"CommandCreateLog",
|
|
Hlp=>"<device>,create log/weblink for <device>" );
|
|
$cmds{createlog} = \%ahash;
|
|
|
|
my %bhash = ( Fn=>"CommandUsb",
|
|
Hlp=>"[scan|create],display or create fhem-entries for USB devices" );
|
|
$cmds{usb} = \%bhash;
|
|
}
|
|
|
|
#####################################
|
|
sub
|
|
autocreate_Define($$)
|
|
{
|
|
my ($hash, $def) = @_;
|
|
my $name = $hash->{NAME};
|
|
$hash->{STATE} = "active";
|
|
$attr{global}{autoload_undefined_devices} = 1; # Make sure we work correctly
|
|
return undef;
|
|
}
|
|
|
|
sub
|
|
replace_wildcards($$)
|
|
{
|
|
my ($hash, $str) = @_;
|
|
return "" if(!$str);
|
|
my $t = $hash->{TYPE}; $str =~ s/%TYPE/$t/g;
|
|
my $n = $hash->{NAME}; $str =~ s/%NAME/$n/g;
|
|
return $str;
|
|
}
|
|
|
|
#####################################
|
|
sub
|
|
autocreate_Notify($$)
|
|
{
|
|
my ($ntfy, $dev) = @_;
|
|
|
|
my $me = $ntfy->{NAME};
|
|
my $max = int(@{$dev->{CHANGED}});
|
|
my $ret = "";
|
|
my $nrcreated;
|
|
|
|
for (my $i = 0; $i < $max; $i++) {
|
|
|
|
my $s = $dev->{CHANGED}[$i];
|
|
$s = "" if(!defined($s));
|
|
|
|
################
|
|
if($s =~ m/^UNDEFINED ([^ ]*) ([^ ]*) (.*)$/) {
|
|
my ($name, $type, $arg) = ($1, $2, $3);
|
|
next if(AttrVal($me, "disable", undef));
|
|
|
|
my $it = AttrVal($me, "ignoreTypes", undef);
|
|
next if($it && $name =~ m/$it/i);
|
|
|
|
my ($cmd, $ret);
|
|
my $hash = $defs{$name}; # Called from createlog
|
|
|
|
####################
|
|
if(!$hash) {
|
|
$cmd = "$name $type $arg";
|
|
Log3 $me, 2, "autocreate: define $cmd";
|
|
$ret = CommandDefine(undef, $cmd);
|
|
if($ret) {
|
|
Log3 $me, 1, "ERROR: $ret";
|
|
last;
|
|
}
|
|
}
|
|
$hash = $defs{$name};
|
|
$nrcreated++;
|
|
my $room = replace_wildcards($hash, AttrVal($me, "device_room", "%TYPE"));
|
|
# preserve room for createlog
|
|
$room = $attr{$name}{room} if($attr{$name} && $attr{$name}{room});
|
|
$attr{$name}{room} = $room if($room);
|
|
|
|
# BlackList processing
|
|
my $blfound;
|
|
foreach my $bl (@flog_blacklist) {
|
|
$blfound = 1 if($name =~ m/^$bl$/);
|
|
}
|
|
last if($blfound);
|
|
|
|
####################
|
|
my $fl = replace_wildcards($hash, AttrVal($me, "filelog", ""));
|
|
next if(!$fl);
|
|
my $flname = "FileLog_$name";
|
|
delete($defs{$flname}); # If we are re-creating it with createlog.
|
|
my ($gplot, $filter, $devattr) = ("", $name, "");
|
|
foreach my $k (keys %flogpar) {
|
|
next if($name !~ m/^$k$/);
|
|
$gplot = $flogpar{$k}{GPLOT};
|
|
$filter = replace_wildcards($hash, $flogpar{$k}{FILTER});
|
|
$devattr = $flogpar{$k}{ATTR};
|
|
last;
|
|
}
|
|
$cmd = "$flname FileLog $fl $filter";
|
|
Log3 $me, 2, "autocreate: define $cmd";
|
|
$ret = CommandDefine(undef, $cmd);
|
|
if($ret) {
|
|
Log3 $me, 1, "ERROR: $ret";
|
|
last;
|
|
}
|
|
$attr{$flname}{room} = $room if($room);
|
|
$attr{$flname}{logtype} = "${gplot}text";
|
|
if($devattr) {
|
|
foreach my $attrNV (split(" ", $devattr)) {
|
|
my ($an, $av) = split(":", $attrNV, 2);
|
|
$attr{$name}{$an} = $av;
|
|
}
|
|
}
|
|
|
|
####################
|
|
next if(!AttrVal($me, "weblink", 1) || !$gplot);
|
|
$room = replace_wildcards($hash, AttrVal($me, "weblink_room", "Plots"));
|
|
my $wnr = 1;
|
|
foreach my $wdef (split(/,/, $gplot)) {
|
|
next if(!$wdef);
|
|
my ($gplotfile, $stuff) = split(/:/, $wdef);
|
|
next if(!$gplotfile);
|
|
my $wlname = "SVG_$name";
|
|
$wlname .= "_$wnr" if($wnr > 1);
|
|
$wnr++;
|
|
delete($defs{$wlname}); # If we are re-creating it with createlog.
|
|
$cmd = "$wlname SVG fileplot $flname:$gplotfile:CURRENT";
|
|
Log3 $me, 2, "autocreate: define $cmd";
|
|
$ret = CommandDefine(undef, $cmd);
|
|
if($ret) {
|
|
Log3 $me, 1, "ERROR: $ret";
|
|
last;
|
|
}
|
|
$attr{$wlname}{room} = $room if($room);
|
|
$attr{$wlname}{label} = '"' . $name .
|
|
' Min $data{min1}, Max $data{max1}, Last $data{currval1}"';
|
|
}
|
|
}
|
|
|
|
|
|
################
|
|
if($s =~ m/^RENAMED ([^ ]*) ([^ ]*)$/) {
|
|
my ($old, $new) = ($1, $2);
|
|
|
|
if($defs{"FileLog_$old"}) {
|
|
CommandRename(undef, "FileLog_$old FileLog_$new");
|
|
my $hash = $defs{"FileLog_$new"};
|
|
my $oldlogfile = $hash->{currentlogfile};
|
|
|
|
$hash->{REGEXP} =~ s/$old/$new/g;
|
|
$hash->{logfile} =~ s/$old/$new/g;
|
|
$hash->{currentlogfile} =~ s/$old/$new/g;
|
|
$hash->{DEF} =~ s/$old/$new/g;
|
|
|
|
rename($oldlogfile, $hash->{currentlogfile});
|
|
Log3 $me, 2, "autocreate: renamed FileLog_$old to FileLog_$new";
|
|
$nrcreated++;
|
|
}
|
|
|
|
if($defs{"SVG_$old"}) {
|
|
CommandRename(undef, "SVG_$old SVG_$new");
|
|
my $hash = $defs{"SVG_$new"};
|
|
$hash->{LINK} =~ s/$old/$new/g;
|
|
$hash->{DEF} =~ s/$old/$new/g;
|
|
$attr{"SVG_$new"}{label} =~ s/$old/$new/g;
|
|
Log3 $me, 2, "autocreate: renamed SVG_$old to SVG_$new";
|
|
$nrcreated++;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
CommandSave(undef, undef) if(!$ret && $nrcreated && AttrVal($me,"autosave",1));
|
|
return $ret;
|
|
}
|
|
|
|
# TODO: fix it if the device is renamed.
|
|
sub
|
|
CommandCreateLog($$)
|
|
{
|
|
my ($cl, $n) = @_;
|
|
my $ac;
|
|
|
|
foreach my $d (keys %defs) {
|
|
next if($defs{$d}{TYPE} ne "autocreate");
|
|
$ac = $d;
|
|
last;
|
|
}
|
|
return "Please define an autocreate device with attributes first " .
|
|
"(it may be disabled)" if(!$ac);
|
|
|
|
return "No device named $n found" if(!$defs{$n});
|
|
|
|
my $acd = $defs{$ac};
|
|
my $disabled = AttrVal($ac, "disable", undef);
|
|
delete $attr{$ac}{disable} if($disabled);
|
|
|
|
$acd->{CHANGED}[0] = "UNDEFINED $n $defs{$n}{TYPE} none";
|
|
autocreate_Notify($acd, $acd);
|
|
delete $acd->{CHANGED};
|
|
|
|
$attr{$ac}{disable} = 1 if($disabled);
|
|
}
|
|
|
|
|
|
##########################
|
|
# Table for automatically creating IO devices
|
|
# PARAM in define will be replaced with the $1 from matchList
|
|
my @usbtable = (
|
|
{ NAME => "CUL",
|
|
matchList => ['cu.usbmodem.*(.)$', 'ttyACM.*(.)$'],
|
|
DeviceName=> "DEVICE\@9600",
|
|
flush => "\n",
|
|
request => "V\n",
|
|
response => "^V .* CU.*",
|
|
define => "CUL_PARAM CUL DEVICE\@9600 1PARAM34", },
|
|
|
|
{ NAME => "CUL", # TuxRadio/RPi: CSM
|
|
matchList => ["ttySP(.*)", "ttyAMA(.*)", ],
|
|
DeviceName=> "DEVICE\@38400",
|
|
flush => "\n",
|
|
request => "V\n",
|
|
response => "^V .* CSM.*",
|
|
define => "CUL_PARAM CUL DEVICE\@38400 1PARAM34", },
|
|
|
|
{ NAME => "TCM310",
|
|
matchList => ["cu.usbserial(.*)", "cu.usbmodem(.*)",
|
|
"ttyUSB(.*)", "ttyACM(.*)"],
|
|
DeviceName=> "DEVICE\@57600",
|
|
request => pack("H*", "5500010005700838"), # get idbase
|
|
response => "^\x55\x00\x05\x01",
|
|
define => "TCM310_PARAM TCM 310 DEVICE\@57600", },
|
|
|
|
{ NAME => "TCM120",
|
|
matchList => ["ttyUSB(.*)"],
|
|
DeviceName=> "DEVICE\@9600",
|
|
request => pack("H*", "A55AAB5800000000000000000003"), # get idbase
|
|
response => "^\xA5\x5A............",
|
|
define => "TCM120_PARAM TCM 120 DEVICE\@9600", },
|
|
|
|
{ NAME => "FHZ",
|
|
matchList => ["cu.usbserial(.*)", "ttyUSB(.*)"],
|
|
DeviceName=> "DEVICE\@9600",
|
|
request => pack("H*", "8105044fc90185"), # get fhtbuf
|
|
response => "^\x81........",
|
|
define => "FHZ_PARAM FHZ DEVICE", },
|
|
|
|
{ NAME => "TRX",
|
|
matchList => ["cu.usbserial(.*)", "ttyUSB(.*)"],
|
|
DeviceName=> "DEVICE\@38400",
|
|
init => pack("H*", "0D00000000000000000000000000"), # Reset
|
|
request => pack("H*", "0D00000102000000000000000000"), # GetStatus
|
|
response => "^\x0d\x01\x00...........",
|
|
define => "TRX_PARAM TRX DEVICE\@38400", },
|
|
|
|
{ NAME => "ZWDongle",
|
|
matchList => ["cu.PL2303-0000(.*)", "ttyUSB(.*)"],
|
|
DeviceName=> "DEVICE\@115200",
|
|
request => pack("H*", "01030020dc"), # GetStatus
|
|
response => "^\x06.*",
|
|
define => "ZWDongle_PARAM ZWDongle DEVICE\@115200", },
|
|
|
|
);
|
|
|
|
|
|
sub
|
|
CommandUsb($$)
|
|
{
|
|
my ($cl, $n) = @_;
|
|
|
|
return "Usage: usb [scan|create]" if("$n" !~ m/^(scan|create)$/);
|
|
my $scan = 1 if($n eq "scan");
|
|
my $ret = "";
|
|
my $msg;
|
|
my $dir = "/dev";
|
|
|
|
if($^O =~ m/Win/) {
|
|
return "This command is not yet supported on windows";
|
|
}
|
|
|
|
require "$attr{global}{modpath}/FHEM/DevIo.pm";
|
|
|
|
Log3 undef, 1, "usb $n starting";
|
|
################
|
|
# First try to flash unflashed CULs
|
|
if($^O eq "linux") {
|
|
# One device at a time to avoid endless loop
|
|
my $lsusb = `lsusb`;
|
|
if($lsusb) {
|
|
my $culType;
|
|
$culType = "CUL_V4" if($lsusb =~ m/VID=03eb.PID=2ff0/s); # FritzBox
|
|
$culType = "CUL_V3" if($lsusb =~ m/VID=03eb.PID=2ff4/s); # FritzBox
|
|
$culType = "CUL_V2" if($lsusb =~ m/VID=03eb.PID=2ffa/s); # FritzBox
|
|
$culType = "CUL_V4" if($lsusb =~ m/03eb:2ff0/);
|
|
$culType = "CUL_V3" if($lsusb =~ m/03eb:2ff4/);
|
|
$culType = "CUL_V2" if($lsusb =~ m/03eb:2ffa/);
|
|
if($culType) {
|
|
$msg = "$culType: flash it with: CULflash none $culType";
|
|
Log3 undef, 2, $msg; $ret .= $msg . "\n";
|
|
if(!$scan) {
|
|
AnalyzeCommand(undef, "culflash none $culType"); # Enable autoload
|
|
sleep(4); # Leave time for linux to load th drivers
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
################
|
|
# Now the /dev scan
|
|
foreach my $dev (sort split("\n", `ls $dir`)) {
|
|
foreach my $thash (@usbtable) {
|
|
foreach my $ml (@{$thash->{matchList}}) {
|
|
if($dev =~ m/$ml/) {
|
|
my $PARAM = $1;
|
|
$PARAM =~ s/[^A-Za-z0-9]//g;
|
|
my $name = $thash->{NAME};
|
|
$msg = "### $dev: checking if it is a $name";
|
|
Log3 undef, 4, $msg; $ret .= $msg . "\n";
|
|
|
|
# Check if it already used
|
|
foreach my $d (keys %defs) {
|
|
if($defs{$d}{DeviceName} &&
|
|
$defs{$d}{DeviceName} =~ m/$dev/ &&
|
|
$defs{$d}{FD}) {
|
|
$msg = "already used by the $d fhem device";
|
|
Log3 undef, 4, $msg; $ret .= $msg . "\n";
|
|
goto NEXTDEVICE;
|
|
}
|
|
}
|
|
|
|
# Open the device
|
|
my $dname = $thash->{DeviceName};
|
|
$dname =~ s,DEVICE,$dir/$dev,g;
|
|
my $hash = { NAME=>$name, DeviceName=>$dname };
|
|
DevIo_OpenDev($hash, 0, 0);
|
|
if(!defined($hash->{USBDev})) {
|
|
DevIo_CloseDev($hash); # remove the ReadyFn loop
|
|
$msg = "cannot open the device";
|
|
Log3 undef, 4, $msg; $ret .= $msg . "\n";
|
|
goto NEXTDEVICE;
|
|
}
|
|
|
|
# Send reset (optional)
|
|
if(defined($thash->{init})) {
|
|
DevIo_SimpleWrite($hash, $thash->{init}, 0);
|
|
DevIo_TimeoutRead($hash, 0.5);
|
|
}
|
|
|
|
# Clear the USB buffer
|
|
DevIo_SimpleWrite($hash, $thash->{flush}, 0) if($thash->{flush});
|
|
DevIo_TimeoutRead($hash, 0.1);
|
|
DevIo_SimpleWrite($hash, $thash->{request}, 0);
|
|
my $answer = DevIo_TimeoutRead($hash, 0.1);
|
|
DevIo_CloseDev($hash);
|
|
|
|
if($answer !~ m/$thash->{response}/) {
|
|
$msg = "got wrong answer for a $name";
|
|
Log3 undef, 4, $msg; $ret .= $msg . "\n";
|
|
next;
|
|
}
|
|
|
|
my $define = $thash->{define};
|
|
$define =~ s/PARAM/$PARAM/g;
|
|
$define =~ s,DEVICE,$dir/$dev,g;
|
|
$msg = "create as a fhem device with: define $define";
|
|
Log3 undef, 4, $msg; $ret .= $msg . "\n";
|
|
|
|
if(!$scan) {
|
|
Log3 undef, 1, "define $define";
|
|
CommandDefine($cl, $define);
|
|
}
|
|
|
|
goto NEXTDEVICE;
|
|
}
|
|
}
|
|
}
|
|
NEXTDEVICE:
|
|
}
|
|
Log3 undef, 1, "usb $n end";
|
|
return ($scan ? $ret : undef);
|
|
}
|
|
|
|
###################################
|
|
sub
|
|
autocreate_Attr(@)
|
|
{
|
|
my @a = @_;
|
|
my $do = 0;
|
|
|
|
if($a[0] eq "set" && $a[2] eq "disable") {
|
|
$do = (!defined($a[3]) || $a[3]) ? 1 : 2;
|
|
}
|
|
$do = 2 if($a[0] eq "del" && (!$a[2] || $a[2] eq "disable"));
|
|
return if(!$do);
|
|
|
|
$defs{$a[1]}{STATE} = ($do == 1 ? "disabled" : "active");
|
|
|
|
return undef;
|
|
}
|
|
|
|
|
|
1;
|
|
|
|
=pod
|
|
=begin html
|
|
|
|
<a name="autocreate"></a>
|
|
<h3>autocreate</h3>
|
|
<ul>
|
|
|
|
Automatically create not yet defined fhem devices upon reception of a message
|
|
generated by this device. Note: devices which are polled (like the EMEM/EMWZ
|
|
accessed through the EM1010PC) will NOT be automatically created.
|
|
|
|
<br>
|
|
|
|
<a name="autocreatedefine"></a>
|
|
<b>Define</b>
|
|
<ul>
|
|
<code>define <name> autocreate</code><br>
|
|
<br>
|
|
<ul>
|
|
It makes no sense to create more than one instance of this module.
|
|
By defining an instance, the global attribute <a href=
|
|
"#autoload_undefined_devices">autoload_undefined_devices</a>
|
|
is set, so that modules for unknnown devices are automatically loaded.
|
|
The autocreate module intercepts the UNDEFINED event generated by each
|
|
module, creates a device and optionally also FileLog and SVG
|
|
entries.<br>
|
|
<b>Note 1:</b> devices will be created with a unique name, which contains
|
|
the type and a unique id for this type. When <a href="#rename">renaming
|
|
</a> the device, the automatically created filelog and SVG devices
|
|
will also be renamed.<br>
|
|
<b>Note 2:</b> you can disable the automatic creation by setting the
|
|
<a href="#disable">disable</a> attribute, in this case only the rename
|
|
hook is active, and you can use the <a href="#createlog">createlog</a>
|
|
command to add FileLog and SVG to an already defined device.
|
|
</ul>
|
|
<br>
|
|
|
|
Example:<PRE>
|
|
define autocreate autocreate
|
|
attr autocreate autosave
|
|
attr autocreate device_room %TYPE
|
|
attr autocreate filelog test2/log/%NAME-%Y.log
|
|
attr autocreate weblink
|
|
attr autocreate weblink_room Plots
|
|
</PRE>
|
|
</ul>
|
|
|
|
|
|
<a name="autocreateset"></a>
|
|
<b>Set</b> <ul>N/A</ul><br>
|
|
|
|
<a name="autocreateget"></a>
|
|
<b>Get</b> <ul>N/A</ul><br>
|
|
|
|
<a name="autocreateattr"></a>
|
|
<b>Attributes</b>
|
|
<ul>
|
|
<a name="autosave"></a>
|
|
<li>autosave<br>
|
|
After creating a device, automatically save the config file with the
|
|
command <a href="#save">save</a> command. Default is 1 (i.e. on), set
|
|
it to 0 to switch it off.</li><br>
|
|
|
|
<a name="device_room"></a>
|
|
<li>device_room<br>
|
|
"Put" the newly created device in this room. The name can contain the
|
|
wildcards %TYPE and %NAME, see the example above.</li><br>
|
|
|
|
<a name="filelogattr"></a>
|
|
<li>filelog<br>
|
|
Create a filelog associated with the device. The filename can contain
|
|
the wildcards %TYPE and %NAME, see the example above. The filelog will
|
|
be "put" in the same room as the device.</li><br>
|
|
|
|
<a name="weblinkattr"></a>
|
|
<li>weblink<br>
|
|
Create an SVG associated with the device/filelog.</li><br>
|
|
|
|
<a name="weblink_room"></a>
|
|
<li>weblink_room<br>
|
|
"Put" the newly created SVG in this room. The name can contain the
|
|
wildcards %TYPE and %NAME, see the example above.</li><br>
|
|
|
|
<li><a href="#disable">disable</a></li>
|
|
<br>
|
|
|
|
<a name="ignoreTypes"></a>
|
|
<li>ignoreTypes<br>
|
|
This is a regexp, to ignore certain devices, e.g. you neighbours FHT.
|
|
You can specify more than one, with usual regexp syntax, e.g.<br>
|
|
attr autocreate ignoreTypes CUL_HOERMANN.*|FHT_1234|CUL_WS_7
|
|
</li>
|
|
|
|
</ul>
|
|
<br>
|
|
|
|
<a name="createlog"></a>
|
|
<b>createlog</b>
|
|
<ul>
|
|
Use this command to manually add a FileLog and an SVG to an existing
|
|
device. E.g. if a HomeMatic device is created automatically by something
|
|
else then a pairing message, the model is unknown, so no plots will be
|
|
generated. You can set the model/subtype attribute manually, and then call
|
|
createlog to add the corresponding logs.<br><br>
|
|
This command is part of the autocreate module.
|
|
</ul>
|
|
<br>
|
|
|
|
<a name="usb"></a>
|
|
<b>usb</b>
|
|
<ul>
|
|
Usage:
|
|
<ul><code>
|
|
usb scan<br>
|
|
usb create<br>
|
|
</code></ul>
|
|
This command will scan the /dev directory for attached USB devices, and
|
|
will try to identify them. With the argument scan you'll get back a list
|
|
of fhem commands to execute, with the argument create there will be no
|
|
feedback, and the devices will be created instead.<br><br>
|
|
|
|
Note that switching a CUL to HomeMatic mode is still has to be done
|
|
manually.<br><br>
|
|
|
|
On Linux it will also check with the lsusb command, if unflashed CULs are
|
|
attached. If this is the case, it will call CULflash with the appropriate
|
|
parameters (or display the CULflash command if scan is specified). Only
|
|
one device to flash is displayed at a time.<br><br>
|
|
|
|
This command is part of the autocreate module.
|
|
</ul>
|
|
</ul> <!-- End of autocreate -->
|
|
<br>
|
|
|
|
|
|
=end html
|
|
=cut
|