zephyr/samples/sensor/mpr
Kumar Gala 45242422c4 samples: sensor: mpr: Convert to use new dts macros
Convert DT_INST_0_HONEYWELL_MPR_LABEL to
DT_LABEL(DT_INST(0, honeywell_mpr))

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2020-04-30 17:44:50 -05:00
..
boards sample: sensor: mpr: Add MPR sample application 2020-04-22 17:39:31 +02:00
src samples: sensor: mpr: Convert to use new dts macros 2020-04-30 17:44:50 -05:00
CMakeLists.txt sample: sensor: mpr: Add MPR sample application 2020-04-22 17:39:31 +02:00
prj.conf sample: sensor: mpr: Add MPR sample application 2020-04-22 17:39:31 +02:00
README.rst sample: sensor: mpr: Add MPR sample application 2020-04-22 17:39:31 +02:00
sample.yaml sample: sensor: mpr: Add MPR sample application 2020-04-22 17:39:31 +02:00

.. _mpr-sample:

MPR Pressure Sensor
###################

Overview
********

This sample application periodically (1Hz) measures atmospheric pressure in
kilopascal. The result is written to the console.

References
**********

- MPR: https://sensing.honeywell.com/micropressure-mpr-series

Wiring
******

This sample uses an MPRLS0025PA00001A sensor controlled using the i2c
interface. Connect **VIN**, **GND** and Interface: **SDA**, **SCL**.

Building and Running
********************

This project outputs sensor data to the console. It requires a sensor from the
MPR series.
It does not work on QEMU.
In the sample below the :ref:`arduino_due` board is used.

.. zephyr-app-commands::
   :zephyr-app: samples/sensor/mpr
   :board: arduino_due
   :goals: build flash

Sample Output
*************

.. code-block:: console

   pressure value: 101.976303 kPa
   pressure value: 101.986024 kPa
   pressure value: 101.989736 kPa
   pressure value: 101.987424 kPa
   pressure value: 101.992099 kPa
   pressure value: 101.989171 kPa
   pressure value: 101.984226 kPa

   <repeats endlessly>