drivers: sensor: Add TI TMP114 temperature sensors

Add device driver for TI TMP114 I2C temperature sensor.
The driver only support basic functionality, i.e. fetch temperature
using default values.

Datasheet:
	https://www.ti.com/lit/ds/symlink/tmp114.pdf

Signed-off-by: Fredrik Gihl <fgihl@hotmail.com>
This commit is contained in:
Fredrik Gihl 2024-04-24 21:40:44 +02:00 committed by Anas Nashif
commit be25e34a7c
8 changed files with 230 additions and 0 deletions

View file

@ -1036,3 +1036,8 @@ test_i2c_nct75: test_i2c_nct75@8b {
reg = <0x8b>;
status = "okay";
};
test_i2c_tmp114: tmp114@8c {
compatible = "ti,tmp114";
reg = <0x8c>;
};