Info: Adds support for a number of I2C barometric pressure and temperature
sensors on i2c_arm
Load: dtoverlay=i2c-sensor,<param>=<val>
-Params: addr Set the address for the BME280, BMP280, TMP102
- or LM75
+Params: addr Set the address for the BME280, BMP280, TMP102,
+ HDC100X or LM75
bme280 Select the Bosch Sensortronic BME280
Valid addresses 0x76-0x77, default 0x76
tmp102 Select the Texas Instruments TMP102 temp sensor
Valid addresses 0x48-0x4b, default 0x48
+ hdc100x Select the Texas Instruments HDC100x temp sensor
+ Valid addresses 0x40-0x43, default 0x40
+
+ tsl4531 Select the AMS TSL4531 digital ambient light
+ sensor
+
+ veml6070 Select the Vishay VEML6070 ultraviolet light
+ sensor
+
Name: i2c0-bcm2708
Info: Enable the i2c_bcm2708 driver for the i2c0 bus. Not all pin combinations
};
};
+ fragment@8 {
+ target = <&i2c_arm>;
+ __dormant__ {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "okay";
+
+ hdc100x: hdc100x@40 {
+ compatible = "hdc100x";
+ reg = <0x40>;
+ status = "okay";
+ };
+ };
+ };
+
+ fragment@9 {
+ target = <&i2c_arm>;
+ __dormant__ {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "okay";
+
+ tsl4531: tsl4531@29 {
+ compatible = "tsl4531";
+ reg = <0x29>;
+ status = "okay";
+ };
+ };
+ };
+
+ fragment@10 {
+ target = <&i2c_arm>;
+ __dormant__ {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "okay";
+
+ veml6070: veml6070@38 {
+ compatible = "veml6070";
+ reg = <0x38>;
+ status = "okay";
+ };
+ };
+ };
+
__overrides__ {
addr = <&bme280>,"reg:0", <&bmp280>,"reg:0", <&tmp102>,"reg:0",
- <&lm75>,"reg:0";
+ <&lm75>,"reg:0",<&hdc100x>,"reg:0";
bme280 = <0>,"+0";
bmp085 = <0>,"+1";
bmp180 = <0>,"+2";
lm75addr = <&lm75>,"reg:0";
si7020 = <0>,"+6";
tmp102 = <0>,"+7";
+ hdc100x = <0>,"+8";
+ tsl4531 = <0>,"+9";
+ veml6070 = <0>,"+10";
};
};