2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

I2C_BMP180: replaced all non-ascii-characters with their ascii-equivalent (see http://www.fhemwiki.de/wiki/DevelopmentGuidelines)

git-svn-id: https://svn.fhem.de/fhem/trunk@5357 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
ntruchsess 2014-03-28 20:22:39 +00:00
parent faa80f4433
commit 56be2bfd99

View File

@ -266,7 +266,7 @@ sub I2C_BMP180_I2CRec ($$) {
unless ($hash->{HiPi_used}) {#nicht nutzen wenn HiPi Bibliothek in Benutzung unless ($hash->{HiPi_used}) {#nicht nutzen wenn HiPi Bibliothek in Benutzung
my $phash = $hash->{IODev}; my $phash = $hash->{IODev};
$pname = $phash->{NAME}; $pname = $phash->{NAME};
while ( my ( $k, $v ) = each %$clientmsg ) { #erzeugen von Internals für alle Keys in $clientmsg die mit dem physical Namen beginnen while ( my ( $k, $v ) = each %$clientmsg ) { #erzeugen von Internals fuer alle Keys in $clientmsg die mit dem physical Namen beginnen
$hash->{$k} = $v if $k =~ /^$pname/ ; $hash->{$k} = $v if $k =~ /^$pname/ ;
} }
} }
@ -657,7 +657,7 @@ sub I2C_BMP180_calcTruePressure($$$) {
Installation des HiPi Perl Moduls:<br> Installation des HiPi Perl Moduls:<br>
<code><pre> wget http://raspberry.znix.com/hipifiles/hipi-install <code><pre> wget http://raspberry.znix.com/hipifiles/hipi-install
perl hipi-install</pre></code> perl hipi-install</pre></code>
Um die Rechte für die I2C Devices anzupassen, folgende Datei:<br> Um die Rechte f&uuml;r die I2C Devices anzupassen, folgende Datei:<br>
<code><pre> /etc/udev/rules.d/98_i2c.rules</pre></code> <code><pre> /etc/udev/rules.d/98_i2c.rules</pre></code>
mit diesem Inhalt anlegen:<br> mit diesem Inhalt anlegen:<br>
<code><pre> SUBSYSTEM=="i2c-dev", MODE="0666"</pre></code> <code><pre> SUBSYSTEM=="i2c-dev", MODE="0666"</pre></code>