Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions arch/arm/boot/dts/overlays/README
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,8 @@ Params: addr Set the address for the BME280, BMP280 or
bmp280 Select the Bosch Sensortronic BMP280
Valid addresses 0x76-0x77, default 0x76

htu21 Select the HTU21 temperature and humidity sensor

lm75 Select the Maxim LM75 temperature sensor

lm75addr Choose the address for the LM75 (0x48-0x4f -
Expand Down
6 changes: 6 additions & 0 deletions arch/arm/boot/dts/overlays/i2c-sensor-overlay.dts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@
status = "disable";
};

htu21: htu21@40 {
compatible = "htu21";
reg = <0x40>;
status = "disable";
};

lm75: lm75@4f {
compatible = "lm75";
reg = <0x4f>;
Expand Down