Arduino Nano - Capteur de Température et d'Humidité - OLED

Ce tutoriel vous explique comment lire la température et l'humidité à partir d'un capteur DHT11/DHT22 et les afficher sur un OLED.

Capteur de température et d'humidité Arduino Nano DHT11/DHT22 avec affichage OLED

Préparation du matériel

1×Arduino Nano
1×USB A to Mini-B USB cable
1×SSD1306 I2C OLED Display 128x64
1×DHT11 Temperature and Humidity Sensor
1×Jumper Wires
1×(Optional) 9V Power Adapter for Arduino Nano
1×(Recommended) Screw Terminal Adapter for Arduino Nano

You can use DHT22 sensor instead of DHT11 sensor.

Or you can buy the following sensor kits:

1×DIYables Sensor Kit (30 sensors/displays)
1×DIYables Sensor Kit (18 sensors/displays)
Divulgation : Certains des liens fournis dans cette section sont des liens affiliés Amazon. Nous pouvons recevoir une commission pour tout achat effectué via ces liens, sans coût supplémentaire pour vous. Nous vous remercions de votre soutien.

À propos de l'écran OLED, des capteurs d'humidité et de température DHT11 et DHT22

Si vous n'êtes pas familier avec l'écran OLED, les capteurs d'humidité et de température DHT11 et DHT22 (brochage, fonctionnalités, programmation...), les tutoriels suivants peuvent vous aider :

Diagramme de câblage

Arduino Nano - Câblage du module DHT11 avec écran LCD

Schéma de câblage Arduino Nano DHT11 OLED

This image is created using Fritzing. Click to enlarge image

Arduino Nano - Câblage du module DHT22 avec écran LCD

Schéma de câblage Arduino Nano DHT22 OLED

This image is created using Fritzing. Click to enlarge image

Code Arduino Nano - Capteur DHT11 - OLED

/* * Ce code Arduino Nano a été développé par newbiely.fr * Ce code Arduino Nano est mis à disposition du public sans aucune restriction. * Pour des instructions complètes et des schémas de câblage, veuillez visiter: * https://newbiely.fr/tutorials/arduino-nano/arduino-nano-temperature-humidity-sensor-oled */ #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #include <DHT.h> #define OLED_WIDTH 128 // OLED display width, in pixels #define OLED_HEIGHT 64 // OLED display height, in pixels #define DHT_PIN 2 // The Arduino Nano pin connected to DHT11 sensor #define DHT_TYPE DHT11 Adafruit_SSD1306 oled(OLED_WIDTH, OLED_HEIGHT, &Wire, -1); // create SSD1306 display object connected to I2C DHT dht(DHT_PIN, DHT_TYPE); String displayString; void setup() { Serial.begin(9600); // initialize OLED display with address 0x3C for 128x64 if (!oled.begin(SSD1306_SWITCHCAPVCC, 0x3C)) { Serial.println(F("SSD1306 allocation failed")); while (true); } delay(2000); // wait for initializing oled.clearDisplay(); // clear display oled.setTextSize(2); // text size oled.setTextColor(WHITE); // text color oled.setCursor(0, 10); // position to display dht.begin(); // initialize DHT11 the temperature and humidity sensor displayString.reserve(10); // to avoid fragmenting memory when using String } void loop() { float humi = dht.readHumidity(); // read humidity float temperature_C = dht.readTemperature(); // read temperature // check if any reads failed if (isnan(humi) || isnan(temperature_C)) { displayString = "Failed"; } else { displayString = String(temperature_C, 1); // one decimal places displayString += "°C"; displayString += String(humi, 1); // one decimal places displayString += "%"; } Serial.println(displayString); // print the temperature in Celsius to Serial Monitor oled_display_center(displayString); // display temperature and humidity on OLED } void oled_display_center(String text) { int16_t x1; int16_t y1; uint16_t width; uint16_t height; oled.getTextBounds(text, 0, 0, &x1, &y1, &width, &height); // center the display both horizontally and vertically oled.clearDisplay(); // clear display oled.setCursor((OLED_WIDTH - width) / 2, (OLED_HEIGHT - height) / 2); oled.println(text); // text to display oled.display(); }

Étapes rapides

  • Cliquez sur l'icône Libraries dans la barre gauche de l'IDE Arduino.
  • Recherchez "SSD1306" puis trouvez la bibliothèque SSD1306 d'Adafruit.
  • Appuyez sur le bouton Install pour installer la bibliothèque.
Bibliothèque OLED Arduino Nano
  • Vous devrez installer d'autres dépendances de bibliothèque.
  • Appuyez sur le bouton Install All pour terminer l'installation de toutes les dépendances de la bibliothèque.
Bibliothèque de capteurs Adafruit GFX pour Arduino Nano
  • Recherchez « DHT » et localisez la bibliothèque de capteurs Adafruit DHT.
  • Appuyez sur le bouton Install pour installer la bibliothèque.
Bibliothèque du capteur DHT pour Arduino Nano
  • Il vous sera demandé d'installer d'autres dépendances de bibliothèque.
  • Cliquez sur le bouton Install All pour installer toutes les dépendances de la bibliothèque.
Bibliothèque unifiée de capteurs Adafruit pour Arduino Nano
  • Copiez le code ci-dessus et ouvrez-le dans l'IDE Arduino.
  • Cliquez sur le bouton Upload dans l'IDE Arduino pour envoyer le code au Arduino Nano.
  • Placez le capteur dans de l'eau chaude et froide, ou tenez-le dans votre main.
  • Vérifiez le résultat sur l'OLED et le moniteur série.

※ NOTE THAT:

Le code en question centre automatiquement le texte à la fois horizontalement et verticalement sur un écran OLED.

Code Arduino Nano - Capteur DHT22 - OLED

/* * Ce code Arduino Nano a été développé par newbiely.fr * Ce code Arduino Nano est mis à disposition du public sans aucune restriction. * Pour des instructions complètes et des schémas de câblage, veuillez visiter: * https://newbiely.fr/tutorials/arduino-nano/arduino-nano-temperature-humidity-sensor-oled */ #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #include <DHT.h> #define OLED_WIDTH 128 // OLED display width, in pixels #define OLED_HEIGHT 64 // OLED display height, in pixels #define DHT_PIN 2 // The Arduino Nano pin connected to DHT22 sensor #define DHT_TYPE DHT22 Adafruit_SSD1306 oled(OLED_WIDTH, OLED_HEIGHT, &Wire, -1); // create SSD1306 display object connected to I2C DHT dht(DHT_PIN, DHT_TYPE); String displayString; void setup() { Serial.begin(9600); // initialize OLED display with address 0x3C for 128x64 if (!oled.begin(SSD1306_SWITCHCAPVCC, 0x3C)) { Serial.println(F("SSD1306 allocation failed")); while (true); } delay(2000); // wait for initializing oled.clearDisplay(); // clear display oled.setTextSize(2); // text size oled.setTextColor(WHITE); // text color oled.setCursor(0, 10); // position to display dht.begin(); // initialize DHT22 the temperature and humidity sensor displayString.reserve(10); // to avoid fragmenting memory when using String } void loop() { float humi = dht.readHumidity(); // read humidity float temperature_C = dht.readTemperature(); // read temperature // check if any reads failed if (isnan(humi) || isnan(temperature_C)) { displayString = "Failed"; } else { displayString = String(temperature_C, 1); // one decimal places displayString += "°C"; displayString += String(humi, 1); // one decimal places displayString += "%"; } Serial.println(displayString); // print the temperature in Celsius to Serial Monitor oled_display_center(displayString); // display temperature and humidity on OLED } void oled_display_center(String text) { int16_t x1; int16_t y1; uint16_t width; uint16_t height; oled.getTextBounds(text, 0, 0, &x1, &y1, &width, &height); // center the display both horizontally and vertically oled.clearDisplay(); // clear display oled.setCursor((OLED_WIDTH - width) / 2, (OLED_HEIGHT - height) / 2); oled.println(text); // text to display oled.display(); }

※ NOTE THAT:

Le code pour DHT11 et DHT22 est le même, à part une ligne. La bibliothèque utilisée pour les deux est également la même.

Vidéo

※ OUR MESSAGES

  • 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!