mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 14:35:20 +00:00
Add an example on how to use the DPS310 sensor. Signed-off-by: Christoph Reiter <christoph.reiter@infineon.com>
19 lines
274 B
Plaintext
19 lines
274 B
Plaintext
/*
|
|
* Copyright (c) 2019 Infineon Technologies AG
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/*
|
|
* A DPS310 attached to the Arduino I2C pins
|
|
*/
|
|
|
|
&arduino_i2c {
|
|
DPS310@77 {
|
|
status = "okay";
|
|
compatible = "infineon,dps310";
|
|
reg = <0x77>;
|
|
label = "DPS310";
|
|
};
|
|
};
|