GY-68 BMP180 Digital Barometric Pressure Sensor Module Replace BMP085 Arduino
Aus www.electronic-man.randschtoischlotzer.de
Einrichtungschritte
- mit
sudo raspi-config
- unter
- 5 Interfacing Options
- P5 I2C Enable/Disable automatic loading of I2C kernel module
- Would you like the ARM I2C interface to be enabled?
Ja
wählen
- P5 I2C Enable/Disable automatic loading of I2C kernel module
- 5 Interfacing Options
das i2C-Interface einschalten
- Software installieren:
sudo apt-get install python-smbus i2c-tools git
- Sensor prüfen:
i2cdetect -y 1
- Ausgabe sollte sein:
0 1 2 3 4 5 6 7 8 9 a b c d e f 00: -- -- -- -- -- -- -- -- -- -- -- -- -- 10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 70: -- -- -- -- -- -- -- 77
Anschluss und Installation Quelle:
RRD-Datenbank pressure.rrd "anzeigen"
- letze Werte:
rrdtool lastupdate pressure.rrd | perl -pe 's/(\d+)/localtime($1)/e'
- Werte der letzen 24 Stunden:
rrdtool fetch pressure.rrd LAST -r 900 -s -24h | perl -pe 's/(\d+)/localtime($1)/e'