Info: Adds support for a number of I2C barometric pressure and temperature
sensors on i2c_arm
Load: dtoverlay=i2c-sensor,<param>=<val>
-Params: bmp085 Select the Bosch sensortronic BMP085
+Params: addr Set the address for the BME280 and BMP280 (0x76
+ or 0x77 - default 0x76)
- bmp280 Select the Bosch sensortronic BMP280
+ bme280 Select the Bosch Sensortronic BME280
+
+ bmp085 Select the Bosch Sensortronic BMP085
+
+ bmp180 Select the Bosch Sensortronic BMP180
+
+ bmp280 Select the Bosch Sensortronic BMP280
lm75 Select the Maxim LM75 temperature sensor
#size-cells = <0>;
status = "okay";
+ bme280: bme280@76 {
+ compatible = "bosch,bme280";
+ reg = <0x76>;
+ status = "disable";
+ };
+
bmp085: bmp085@77 {
compatible = "bosch,bmp085";
reg = <0x77>;
status = "disable";
};
+ bmp180: bmp180@77 {
+ compatible = "bosch,bmp180";
+ reg = <0x77>;
+ status = "disable";
+ };
+
bmp280: bmp280@76 {
compatible = "bosch,bmp280";
reg = <0x76>;
};
__overrides__ {
+ addr = <&bme280>,"reg:0", <&bmp280>,"reg:0";
+ bme280 = <&bme280>,"status";
bmp085 = <&bmp085>,"status";
+ bmp180 = <&bmp180>,"status";
bmp280 = <&bmp280>,"status";
lm75 = <&lm75>,"status";
lm75addr = <&lm75>,"reg:0";