mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-13 05:06:35 +00:00
Typos/comments
git-svn-id: https://svn.fhem.de/fhem/trunk@1261 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
ba9e127365
commit
95bdae3afa
@ -47,7 +47,7 @@ my $clientsSlowRF = ":FS20:FHT:FHT8V:KS300:USF1000:BS:HMS: " .
|
||||
":CUL_EM:CUL_WS:CUL_FHTTK:CUL_RFR:CUL_HOERMANN: " .
|
||||
":ESA2000:CUL_IR:CUL_TX";
|
||||
|
||||
my $clientsHomeMatic = ":CUL_HM:HMS:";
|
||||
my $clientsHomeMatic = ":CUL_HM:HMS:"; # OneWire emulated as HMS on a CUNO
|
||||
|
||||
my %matchListSlowRF = (
|
||||
"1:USF1000" => "^81..(04|0c)..0101a001a5ceaa00....",
|
||||
|
@ -1393,7 +1393,7 @@ CUL_HM_Pair(@)
|
||||
# Create shadow device for multi-channel
|
||||
if($stn eq "switch" &&
|
||||
$devInfo =~ m,(..)(..)(..), ) {
|
||||
my ($b1, $b2, $b3) = (hex($1), hex($2), $3);
|
||||
my ($b1, $b2, $b3) = (hex($1)&0xf, hex($2), $3);
|
||||
for(my $i = $b2+1; $i<=$b1; $i++) {
|
||||
my $nSrc = sprintf("%s%02X", $src, $i);
|
||||
if(!defined($modules{CUL_HM}{defptr}{$nSrc})) {
|
||||
|
@ -18,11 +18,14 @@ export LD_LIBRARY_PATH=$home/lib
|
||||
export PERL5LIB=$home/lib/perl5/site_perl/5.12.2/mips-linux:$home/lib/perl5/site_perl/5.12.2:$home/lib/perl5/5.12.2/mips-linux:$home/lib/perl5/5.12.2
|
||||
|
||||
# let FHEM run as user boxusr80 by adding user fhem with uid of boxusr80
|
||||
# Using this feature the following will not work: ping,WOL,lcd4linux
|
||||
# start fhem-user
|
||||
id fhem > /dev/null 2>&1
|
||||
if [ "$?" -ne "0" ]; then
|
||||
echo "user fhem does not exist. Adding it."
|
||||
echo "fhem:any:1080:0:fhem:/home-not-used:/bin/sh" >>/var/tmp/passwd
|
||||
fi
|
||||
# end fhem-user
|
||||
|
||||
# set file ownership
|
||||
chown -R boxusr80 ${home}/log
|
||||
|
@ -13,16 +13,16 @@ my @hw = qw(
|
||||
OWFS X10 OWTEMP ALL3076 ALL4027 WEBIO WEBIO_12DIGITAL WEBTHERM RFXCOM OREGON
|
||||
RFXMETER RFXX10REC RFXELSE WS300 Weather EM EMWZ EMEM EMGZ ESA2000 ECMD
|
||||
ECMDDevice SCIVT SISPM USBWX WS3600 M232 xxLG7000 M232Counter LGTV
|
||||
M232Voltage WS2000 ALL4000T IPWE VantagePro2
|
||||
M232Voltage WS2000 ALL4000T IPWE VantagePro2 WOL NetIO230B IT CUL_IR
|
||||
);
|
||||
my @help = qw(
|
||||
at notify sequence watchdog FileLog FHEM2FHEM PachLog holiday PID autocreate
|
||||
dummy structure SUNRISE_EL Utils XmlList updatefhem
|
||||
at average notify sequence watchdog FileLog FHEM2FHEM PachLog holiday PID
|
||||
autocreate dummy structure JsonList SUNRISE_EL Utils XmlList updatefhem
|
||||
);
|
||||
my @fe = (
|
||||
"FHEMRENDERER", "fheME", "iPhone: dhs-computertechnik", "iPhone: fhemgw",
|
||||
"iPhone: fhemobile", "iPhone: phyfhem", "myHCE", "pgm2/FHEMWEB with SVG",
|
||||
"pgm2/FHEMWEB with gnuplot", "pgm3", "pgm5", "HomeMini",
|
||||
"pgm2/FHEMWEB with gnuplot", "pgm3", "pgm5", "HomeMini", "android: andFHEM",
|
||||
);
|
||||
my @platform = (
|
||||
"PC: Linux", "OSX", "PC: Windows", "PC: BSD", "Fritz!Box 7390", "Fritz!Box 7270",
|
||||
|
Loading…
x
Reference in New Issue
Block a user