Arduino UNO Q - DHT11

Want to measure temperature AND humidity with your Arduino UNO Q — and get Telegram alerts when it gets too hot or too humid? This tutorial shows you how to use the DHT11 sensor module for complete environment monitoring.

In this tutorial, you will learn:

Arduino UNO Q DHT11 Temperature and Humidity Sensor

Hardware Preparation

1×Arduino UNO Q
1×USB Cable for Arduino Uno Q
1×DHT11 Temperature Humidity Sensor Module
1×10 kΩ Resistor
1×Breadboard
1×Jumper Wires
1×Recommended: Screw Terminal Block Shield for Arduino Uno
1×Recommended: Sensors/Servo Expansion Shield for Arduino Uno
1×Recommended: Breadboard Shield for Arduino Uno
1×Recommended: Enclosure for Arduino Uno
1×Recommended: Prototyping Base Plate & Breadboard Kit for Arduino UNO

Or you can buy the following kits:

1×DIYables Sensor Kit (18 sensors/displays)
Disclosure: Some of the links provided in this section are Amazon affiliate links. We may receive a commission for any purchases made through these links at no additional cost to you.
Additionally, some of these links are for products from our own brand, DIYables .

Overview of the DHT11 Sensor

DHT11
Operating Voltage 3 to 5V
Temperature Range 0°C to 50°C
Temperature Accuracy ± 2°C
Humidity Range 20% to 80%
Humidity Accuracy 5%
Reading Rate 1Hz (once every second)

Pinout

The DHT11 is available in two forms: sensor and module.

DHT11 temperature and humidity sensor Pinout

DHT11 Sensor (4-pin):

  • GND: Connect to GND (0V)
  • VCC: Connect to 3.3V or 5V
  • DATA: Communication pin — connect to a digital pin on the MCU
  • NC: Not connected

DHT11 Module (3-pin):

  • GND: Connect to GND (0V)
  • VCC: Connect to 3.3V or 5V
  • DATA: Communication pin (also labeled OUT or S on some modules)

Most DHT11 modules include a built-in pull-up resistor — no external resistor needed.

Wiring Diagram

Arduino UNO Q - DHT11 Sensor Wiring

Requires a 10kΩ pull-up resistor between DATA and VCC.

The wiring diagram between Arduino UNO Q DHT11 Sensor

This image is created using Fritzing. Click to enlarge image

Arduino UNO Q - DHT11 Module Wiring

No external resistor needed — the module includes one.

The wiring diagram between Arduino UNO Q DHT11 Module

This image is created using Fritzing. Click to enlarge image

DHT11 Pin Arduino UNO Q MCU
GND GND
VCC 3.3V or 5V
DATA D2

How To Program For DHT11

  • Include the library:
#include <DHT.h>
  • Define the pin and create a sensor object:
#define DHT11_PIN 2 DHT dht11(DHT11_PIN, DHT11);
  • Initialize the sensor:
dht11.begin();
  • Read humidity and temperature:
float humidity = dht11.readHumidity(); float tempC = dht11.readTemperature(); float tempF = dht11.readTemperature(true);
  • Always check for failed reads:
if (isnan(humidity) || isnan(tempC) || isnan(tempF)) { Serial.println("Failed to read from DHT11 sensor!"); }

Arduino UNO Q Code

The Arduino UNO Q has two processors working together:

  • The STM32 MCU reads the DHT11 sensor directly — all sensor communication runs on the MCU
  • The Qualcomm MPU runs Debian Linux and handles Wi-Fi, Python, and cloud connectivity
  • In this section, only the MCU is programmed — the Linux side stays idle. A later section shows how both processors work together via Bridge.

The MCU reads temperature and humidity every 3 seconds and prints to the Serial Monitor.

/* * This Arduino UNO Q code was developed by newbiely.com * * This Arduino UNO Q code is made available for public use without any restriction * * For comprehensive instructions and wiring diagrams, please visit: * https://newbiely.com/tutorials/arduino-uno-q/arduino-uno-q-dht11 */ // COPYRIGHT newbiely.com // AUTHOR: newbiely // This code is made available for public use without restriction. // For complete instructions, tutorials, and further information, visit: // https://newbiely.com/tutorials/arduino-uno-q/arduino-uno-q-dht11 #include <DHT.h> #define DHT11_PIN 2 // Arduino UNO Q MCU pin connected to DHT11 DATA pin DHT dht11(DHT11_PIN, DHT11); void setup() { Serial.begin(115200); delay(1500); dht11.begin(); Serial.println("Arduino UNO Q DHT11 ready"); } void loop() { delay(3000); // DHT11 requires at least 1 second between readings float humidity = dht11.readHumidity(); float tempC = dht11.readTemperature(); float tempF = dht11.readTemperature(true); if (isnan(humidity) || isnan(tempC) || isnan(tempF)) { Serial.println("Failed to read from DHT11 sensor!"); } else { Serial.print("Humidity: "); Serial.print(humidity); Serial.print("% | Temperature: "); Serial.print(tempC); Serial.print("°C ~ "); Serial.print(tempF); Serial.println("°F"); } }

Detailed Instructions

First time with Arduino UNO Q? Follow the Getting Started with Arduino UNO Q tutorial before proceeding.

  • Connect: Wire the DHT11 sensor or module to the Arduino UNO Q MCU as shown in the wiring diagram.
  • Open Arduino App Lab: Launch Arduino App Lab and wait until it detects your Arduino UNO Q.
  • Create a new App: Click the Create New App button.
Create New App in Arduino App Lab on Arduino UNO Q
  • Give the App a name, for example: Dht11
  • Click Create to confirm.
Arduino App Lab App folders and files on Arduino UNO Q
  • Paste the sketch: Copy the MCU code above and paste it into sketch/sketch.ino. Keep other files as default.
  • Install the library: Click the Add sketch library button (the open book icon with a + sign) in the left sidebar.
Add sketch library in Arduino App Lab on Arduino UNO Q
  • Search for DHT sensor library created by Adafruit and click the Install button.
My Apps / DIYables Apps
Run
Bricks
No bricks added...
Sketch Libraries
No sketch libra...
Files
python
sketch
.gitignore
README.md
app.yaml
sketch.ino
Add sketch library
DHT sensor library Adafruit

Arduino library for DHT11, DHT22, etc Temp & Humidity Sensors

1.4.6
Install
More Info
  • Upload: Click the Run button in Arduino App Lab.
Click Run button in Arduino App Lab on Arduino UNO Q
  • Breathe on the sensor or hold it — watch humidity and temperature readings update.

App Lab Console Output

DIYables_Apps
Stop
sketch.ino
1#include "Arduino_RouterBridge.h"
Serial Monitor
Python
Message (Enter to send a message to "Newbiely" on usb(2820070321))
New Line
9600 baud
[2026-04-29 09:00:01] Arduino UNO Q DHT11 ready [2026-04-29 09:00:04] Humidity: 55.0% | Temperature: 26.00°C ~ 78.80°F [2026-04-29 09:00:07] Humidity: 56.0% | Temperature: 26.10°C ~ 79.00°F [2026-04-29 09:00:10] Humidity: 58.0% | Temperature: 26.40°C ~ 79.52°F [2026-04-29 09:00:13] Humidity: 62.0% | Temperature: 27.00°C ~ 80.60°F

Bridge: Linux + MCU

This section shows how to program both processors of the Arduino UNO Q so the Linux side can read temperature and humidity via Bridge:

  • The DHT11 sensor is connected to the MCU (STM32) — the MCU reads data every 3 seconds and caches the latest values
  • The MPU cannot access the DHT11 directly — it must call Bridge functions to retrieve readings
  • The MPU has Wi-Fi — running full Debian Linux, it can log data, publish to dashboards, or send alerts over the Internet
  • Arduino_RouterBridge enables RPC communication between the two processors
  • ⚠️ /dev/ttyHS1 (Linux) and Serial1 (MCU) are RESERVED by the router — never open them in user code

In short: MCU reads DHT11 every 3 seconds and caches the result → MPU polls Bridge to retrieve readings → MPU publishes or alerts over Wi-Fi.

Note: In the Bridge sketch, the loop() function reads the DHT11 every 3 seconds to keep the cached values fresh. All Bridge callbacks are read-only and return cached data without blocking.

MCU Code (Bridge)

/* * This Arduino UNO Q code was developed by newbiely.com * * This Arduino UNO Q code is made available for public use without any restriction * * For comprehensive instructions and wiring diagrams, please visit: * https://newbiely.com/tutorials/arduino-uno-q/arduino-uno-q-dht11 */ // COPYRIGHT newbiely.com // AUTHOR: newbiely // This code is made available for public use without restriction. // For complete instructions, tutorials, and further information, visit: // https://newbiely.com/tutorials/arduino-uno-q/arduino-uno-q-dht11 #include <DHT.h> #include "Arduino_RouterBridge.h" #define DHT11_PIN 2 DHT dht11(DHT11_PIN, DHT11); float last_humidity = 0.0; float last_temp_c = 0.0; float last_temp_f = 0.0; unsigned long last_read_ms = 0; String get_humidity(String arg) { return String(last_humidity, 1); } String get_temp_c(String arg) { return String(last_temp_c, 2); } String get_temp_f(String arg) { return String(last_temp_f, 2); } String get_status(String arg) { return "Temp: " + String(last_temp_c, 2) + "°C / " + String(last_temp_f, 2) + "°F Humidity: " + String(last_humidity, 1) + "%"; } void setup() { Bridge.begin(); Monitor.begin(); dht11.begin(); delay(2000); // allow sensor to stabilize float h = dht11.readHumidity(); float c = dht11.readTemperature(); float f = dht11.readTemperature(true); if (!isnan(h) && !isnan(c) && !isnan(f)) { last_humidity = h; last_temp_c = c; last_temp_f = f; } Bridge.provide("get_humidity", get_humidity); Bridge.provide("get_temp_c", get_temp_c); Bridge.provide("get_temp_f", get_temp_f); Bridge.provide("get_status", get_status); Monitor.println("Arduino UNO Q DHT11 Bridge ready"); } void loop() { unsigned long now = millis(); if (now - last_read_ms >= 3000) { last_read_ms = now; float h = dht11.readHumidity(); float c = dht11.readTemperature(); float f = dht11.readTemperature(true); if (isnan(h) || isnan(c) || isnan(f)) { Monitor.println("Failed to read from DHT11 sensor!"); } else { last_humidity = h; last_temp_c = c; last_temp_f = f; Monitor.println("Humidity: " + String(h, 1) + "% Temp: " + String(c, 2) + "°C / " + String(f, 2) + "°F"); } } }

Python Code (Bridge)

/* * This Arduino UNO Q code was developed by newbiely.com * * This Arduino UNO Q code is made available for public use without any restriction * * For comprehensive instructions and wiring diagrams, please visit: * https://newbiely.com/tutorials/arduino-uno-q/arduino-uno-q-dht11 */ # COPYRIGHT newbiely.com # AUTHOR: newbiely # This code is made available for public use without restriction. # For complete instructions, tutorials, and further information, visit: # https://newbiely.com/tutorials/arduino-uno-q/arduino-uno-q-dht11 from arduino.app_utils import * import time def loop(): status = Bridge.call("get_status") print(status) time.sleep(3) App.run(user_loop=loop)

Detailed Instructions

  • Connect: Wire the DHT11 sensor to the Arduino UNO Q as shown in the wiring diagram.
  • Open Arduino App Lab: Launch Arduino App Lab and wait for the board to be detected.
  • Create a new App: Click Create New App, name it Dht11Bridge, then click Create.
  • Paste the MCU sketch: Copy the MCU Bridge code above and paste it into sketch/sketch.ino.
  • Paste the Python code: Copy the Python Bridge code above and paste it into the Python file in the App.
  • Upload: Click the Run button in Arduino App Lab.
Click Run button in Arduino App Lab on Arduino UNO Q
  • Watch temperature and humidity readings appear in the Python console every 3 seconds.

App Lab Console Output

DIYables_Apps
Stop
sketch.ino
1#include "Arduino_RouterBridge.h"
Serial Monitor
Python
Message (Enter to send a message to "Newbiely" on usb(2820070321))
New Line
9600 baud
[2026-04-29 09:00:01] Arduino UNO Q DHT11 Bridge ready [2026-04-29 09:00:04] Humidity: 55.0% Temp: 26.00°C / 78.80°F [2026-04-29 09:00:07] Humidity: 56.0% Temp: 26.10°C / 79.00°F [2026-04-29 09:00:10] Humidity: 58.0% Temp: 26.40°C / 79.52°F
DIYables_Apps
Stop
sketch.ino
1#include "Arduino_RouterBridge.h"
Serial Monitor
Python
[2026-04-29 09:00:04] Temp: 26.00°C / 78.80°F Humidity: 55.0% [2026-04-29 09:00:07] Temp: 26.10°C / 79.00°F Humidity: 56.0% [2026-04-29 09:00:10] Temp: 26.40°C / 79.52°F Humidity: 58.0% [2026-04-29 09:00:13] Temp: 27.00°C / 80.60°F Humidity: 62.0%

Telegram

Monitor temperature and humidity remotely. Receive automatic alerts when temperature exceeds 35°C or humidity exceeds 80%.

MCU sketch: Keep the same MCU sketch from the previous Bridge section.

Python Code (Telegram)

/* * This Arduino UNO Q code was developed by newbiely.com * * This Arduino UNO Q code is made available for public use without any restriction * * For comprehensive instructions and wiring diagrams, please visit: * https://newbiely.com/tutorials/arduino-uno-q/arduino-uno-q-dht11 */ # COPYRIGHT newbiely.com # AUTHOR: newbiely # This code is made available for public use without restriction. # For complete instructions, tutorials, and further information, visit: # https://newbiely.com/tutorials/arduino-uno-q/arduino-uno-q-dht11 from arduino.app_utils import * import requests import time TELEGRAM_BOT_TOKEN = "YOUR_TELEGRAM_BOT_TOKEN" CHAT_ID = "YOUR_CHAT_ID" last_update_id = 0 TEMP_ALERT_C = 35.0 HUMIDITY_ALERT = 80.0 temp_alert_sent = False humi_alert_sent = False def get_updates(): global last_update_id url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/getUpdates" params = {"offset": last_update_id + 1, "timeout": 5} try: response = requests.get(url, params=params, timeout=10) data = response.json() if data["ok"]: return data["result"] except Exception as e: print(f"Error getting updates: {e}") return [] def send_message(chat_id, text): url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/sendMessage" payload = {"chat_id": chat_id, "text": text} try: requests.post(url, data=payload, timeout=10) except Exception as e: print(f"Error sending message: {e}") def loop(): global temp_alert_sent, humi_alert_sent # Auto-alerts temp_c_str = Bridge.call("get_temp_c") humi_str = Bridge.call("get_humidity") try: temp_c = float(temp_c_str) humi = float(humi_str) temp_f_str = Bridge.call("get_temp_f") if temp_c > TEMP_ALERT_C and not temp_alert_sent: temp_alert_sent = True msg = f"⚠️ High temperature: {temp_c_str}°C / {temp_f_str}°F" print(msg) send_message(CHAT_ID, msg) elif temp_c <= TEMP_ALERT_C: temp_alert_sent = False if humi > HUMIDITY_ALERT and not humi_alert_sent: humi_alert_sent = True msg = f"💧 High humidity: {humi_str}%" print(msg) send_message(CHAT_ID, msg) elif humi <= HUMIDITY_ALERT: humi_alert_sent = False except ValueError: pass # Handle Telegram commands updates = get_updates() for update in updates: last_update_id = update["update_id"] if "message" not in update: continue message = update["message"] chat_id = message["chat"]["id"] text = message.get("text", "").strip() print(f"Received: {text}") if text == "/start": send_message(chat_id, "Arduino UNO Q DHT11 Bot\n" "/temp - Read temperature (°C and °F)\n" "/humidity - Read humidity\n" "/status - Get full sensor status") elif text == "/temp": temp_c = Bridge.call("get_temp_c") temp_f = Bridge.call("get_temp_f") send_message(chat_id, f"Temperature: {temp_c}°C ~ {temp_f}°F") elif text == "/humidity": result = Bridge.call("get_humidity") send_message(chat_id, f"Humidity: {result}%") elif text == "/status": result = Bridge.call("get_status") send_message(chat_id, result) else: send_message(chat_id, "Unknown command. Send /start for help.") time.sleep(3) App.run(user_loop=loop)

Detailed Instructions

  • Replace YOUR_TELEGRAM_BOT_TOKEN with your actual bot token from BotFather.
  • Replace YOUR_CHAT_ID with your Telegram chat ID.
  • Paste this Python code into your App's Python file (keep the same MCU sketch).
  • Click the Run button. Send /temp or /humidity from Telegram, or breathe on the sensor to trigger alerts.

App Lab Console Output

DIYables_Apps
Stop
sketch.ino
1#include "Arduino_RouterBridge.h"
Serial Monitor
Python
[2026-04-29 09:10:00] Waiting for Telegram messages... [2026-04-29 09:10:10] ⚠️ High temperature: 36.00°C / 96.80°F [2026-04-29 09:10:25] 💧 High humidity: 82.0% [2026-04-29 09:10:40] Received: /temp [2026-04-29 09:10:55] Received: /humidity
Telegram
Telegram 12:45
Welcome to Telegram!
ArduinoBot 10:19
Chatting with Arduino...
telegram-botfather
BotFather Yesterday
Your bot has been created.

ArduinoBot

bot
Today
/temp
10:15 AM ✓✓
Temperature: 26.00°C ~ 78.80°F
10:16 AM
/humidity
10:17 AM ✓✓
Humidity: 55.0%
10:18 AM
/status
10:19 AM ✓✓
Temp: 26.00°C / 78.80°F Humidity: 55.0%
10:20 AM
⚠️ High temperature: 36.00°C / 96.80°F
10:21 AM
💧 High humidity: 82.0%
10:22 AM

OpenClaw

...OPENCLAW

OpenClaw support for Arduino UNO Q DHT11 sensor is coming soon.

...OPENCLAW

Project Ideas

You can build many useful projects with the DHT11 sensor and Arduino UNO Q:

  • Smart Weather Station: Measure temperature and humidity continuously — the Linux MPU logs data every minute and uploads a daily summary to a cloud dashboard
  • Greenhouse Automation: Use the humidity and temperature readings to control a relay fan and a misting system — the MPU sends Telegram alerts when conditions go out of range
  • Baby Room Monitor: Monitor temperature and humidity in a baby room — Telegram sends an alert when it gets too warm or too dry, helping maintain comfort
  • Fermentation Monitor: Track temperature and humidity during fermentation — the MPU logs data and Telegram alerts if conditions deviate from target range
  • Remote Environment Logger: Deploy on battery power with Wi-Fi — the MPU reads DHT11 via Bridge every 10 minutes and uploads readings to a remote server

Challenge Yourself

Ready to go further with the DHT11 on Arduino UNO Q? Try these challenges:

  • Easy: Modify the MCU sketch to blink the built-in LED when humidity exceeds 70%, providing a visual warning directly on the board.
  • Medium: Add a set_temp_threshold(String) and set_humi_threshold(String) Bridge function that let Python dynamically update the alert thresholds at runtime without recompiling the MCU sketch.
  • Advanced: Build a comfort index display: calculate the heat index from temperature and humidity, display it on the Python console, and send a Telegram report every hour with average temperature, humidity, and heat index. Include a trend indicator (rising/falling/stable) based on the last 3 readings.

※ OUR MESSAGES

  • As freelancers, We are AVAILABLE for HIRE. See how to outsource your project to us
  • Please feel free to share the link of this tutorial. However, Please do not use our content on any other websites. We invested a lot of effort and time to create the content, please respect our work!