DHT11 Temp & Humidity
€4.99 ex. VAT
This breadboard-compatible DHT11 sensor provides reliable temperature and humidity readings with a simple digital interface. It offers mirrored pins for easy connections and full compatibility with Arduino and Axiometa platforms, making it an ideal choice for environmental monitoring projects.
SKU: AXM0011
Details
What's inside?
Discussion
Details
Overview
This breadboard-compatible DHT11 sensor is ideal for monitoring temperature and humidity in your projects. With mirrored pins on each side, it ensures easier connections and seamless integration into your setup.
- Temperature accuracy ±2°C (0-50°C)
- Humidity accuracy ±5% (20-90%)
- Arduino Compatible
- Easy-Interface
- Genesis Matrix Compatible
Documentation
This part is fully open sourced with schematics and 3D files available bellow
AXM0011
Step by step user guide
All Axiometa products come with user guides and setting up instructions
Connection Guide
Here you’ll find connection guide images to help you integrate the sensor with various development platforms.
×
Arduino Example Code
If you haven’t already, check out this tutorial to guide you through setting up the Arduino IDE for uploading and debugging your sketches, as well as installing libraries.
For this part, you will need the following library: DHT11.h
Code copied!
#include <DHT11.h>
DHT11 dht11(A0);
void setup() {
Serial.begin(9600);
}
void loop() {
int temperature = 0;
int humidity = 0;
int result = dht11.readTemperatureHumidity(temperature, humidity);
if (result == 0) {
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.print(" °C\tHumidity: ");
Serial.print(humidity);
Serial.println(" %");
}
}
To see it working open serial monitor
MAC: CMD+Shift+M
Windows: CTRL+Shift+M
Related products
What's inside?
Discussion
Add a review
DHT11 Temp & Humidity
Rating*
0/5
* Rating is required
Your review
* Review is required
Name
* Name is required
Email
* Email is required
0.0
Based on 0 reviews
5 star | 0% | |
4 star | 0% | |
3 star | 0% | |
2 star | 0% | |
1 star | 0% |
0 of 0 reviews
Sorry, no reviews match your current selections