Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions boards/shields/arduino_modulino_thermo/Kconfig.shield
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SPDX-FileCopyrightText: Copyright The Zephyr Project Contributors
# SPDX-License-Identifier: Apache-2.0

config SHIELD_ARDUINO_MODULINO_THERMO
def_bool $(shields_list_contains,arduino_modulino_thermo)
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
* SPDX-FileCopyrightText: Copyright The Zephyr Project Contributors
* SPDX-License-Identifier: Apache-2.0
*/

/ {
aliases {
dht0 = &arduino_modulino_thermo;
};
};

&zephyr_i2c {
arduino_modulino_thermo: arduino-modulino-thermo@44 {
compatible = "renesas,hs300x";
reg = <0x44>;
};
};
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions boards/shields/arduino_modulino_thermo/doc/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.. _arduino_modulino_thermo:

Arduino Modulino Thermo
#######################

Overview
********

The Arduino Modulino Thermo is a QWIIC compatible module built around the Renesas HS3003 temperature
and humidity sensor.

.. image:: img/arduino_modulino_thermo.webp
:align: center
:alt: Arduino Modulino Thermo

Programming
***********

Set ``--shield arduino_modulino_thermo`` when you invoke ``west build``.

For example,

.. zephyr-app-commands::
:zephyr-app: samples/sensor/dht_polling
:board: arduino_uno_r4@wifi
:shield: arduino_modulino_thermo
:goals: build
6 changes: 6 additions & 0 deletions boards/shields/arduino_modulino_thermo/shield.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
shield:
name: arduino_modulino_thermo
full_name: Arduino Modulino Thermo
vendor: arduino
supported_features:
- sensor
Loading