mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-21 17:32:52 +00:00
Added sample demonstrating the TMP116 temperature sensor. Signed-off-by: Ioannis Konstantelias <ikonstadel@gmail.com>
16 lines
203 B
Plaintext
16 lines
203 B
Plaintext
/*
|
|
* Copyright (c) 2019 Centaur Analytics, Inc
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&i2c1 {
|
|
|
|
ti_tmp116: ti_tmp116@4b {
|
|
compatible = "ti,tmp116";
|
|
reg = <0x4B>;
|
|
label = "TMP116";
|
|
};
|
|
|
|
};
|