Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Benjamin Cabé f7ad282504 boards: arduino: doc: Adopt Sphinx custom board directives 4 months ago
..
boards everywhere: reindent `.overlay` files with tabs 1 year ago
src samples, tests, boards: Switch main return type from void to int 2 years ago
CMakeLists.txt
README.rst boards: arduino: doc: Adopt Sphinx custom board directives 4 months ago
prj.conf sensors: Remove unnecessary Kconfig setting of sensors 3 years ago
sample.yaml

README.rst

.. zephyr:code-sample:: mpr
:name: MPR Pressure Sensor
:relevant-api: sensor_interface

Get atmospheric pressure data from an 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 :zephyr:board:`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>