GY-213V HDC1080 Digital Humidity

  • High accuracy and stability for humidity measurement
  • Low power consumption, suitable for battery-operated devices
  • Easy integration with various microcontrollers via I2C interface
  • Compact size for easy embedding in different applications
  • Built-in temperature compensation for accurate humidity readings

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

195,00 EGP

17 People watching this product now!

Payment Methods:

Description

The GY-213V HDC1080 Digital Humidity Sensor is a compact and highly accurate sensor designed to measure humidity levels in a wide range of applications. Utilizing the HDC1080 sensor chip, it provides reliable and precise humidity readings with minimal power consumption. This module is ideal for use in environmental monitoring, weather stations, and indoor climate control systems.

The GY-213V features a digital interface, which simplifies integration with microcontrollers and other digital systems. Its small form factor makes it suitable for embedded systems and space-constrained applications. With its high accuracy and ease of use, the GY-213V is an excellent choice for both hobbyists and professionals seeking to monitor and manage humidity levels effectively.

Specifications

  • Sensor Chip: HDC1080
  • Measurement Range: 0% to 100% Relative Humidity (RH)
  • Humidity Accuracy: ±4% RH (typical), ±6% RH (maximum)
  • Resolution: 14-bit (0.01% RH per bit)
  • Power Supply: 3.3V to 5V DC
  • Current Consumption:
    • Active Mode: 0.5 mA (typical)
    • Sleep Mode: < 1 µA
  • Interface: I2C (Inter-Integrated Circuit)
  • I2C Address: 0x40 (default)
  • Operating Temperature Range: -40°C to +125°C (sensor range), -20°C to +60°C (typical operating range)
  • Dimensions: Approximately 25mm x 20mm x 5mm
  • Connector: 4-pin header (GND, VCC, SDA, SCL)
  • Data Output: Digital (Humidity and Temperature data)
  • Package Includes: GY-213V Module, Pin Header

Features

  • High accuracy and stability for humidity measurement
  • Low power consumption, suitable for battery-operated devices
  • Easy integration with various microcontrollers via I2C interface
  • Compact size for easy embedding in different applications
  • Built-in temperature compensation for accurate humidity readings

This detailed description and specification should give you a clear understanding of the GY-213V HDC1080 Digital Humidity Sensor and its capabilities.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
HDC1080VCC/GND/SDA/SCL3.3-5V / GND / board SDA / board SCL
📟
GY-213V HDC1080 Digital Humidity
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
GY-213V HDC1080 Digital Humidity - Arduino Uno
GY-213V HDC1080 Digital Humidity - Arduino Nano
GY-213V HDC1080 Digital Humidity - Arduino Mega
GY-213V HDC1080 Digital Humidity - ESP32
GY-213V HDC1080 Digital Humidity - ESP8266
GY-213V HDC1080 Digital Humidity - STM32
GY-213V HDC1080 Digital Humidity - Raspberry Pi Pico
📄 File: gy-213v_hdc1080_digital_humidity_-_arduino_uno.inoArduino Uno
547 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for Arduino Uno: A4=SDA, A5=SCL. VCC->3.3V or 5V per module label, GND->GND.
6#include <Wire.h>
7#include <ClosedCube_HDC1080.h>
8
9ClosedCube_HDC1080 hdc1080;
10
11void setup() {
12 Serial.begin(115200);
13 Wire.begin();
14 hdc1080.begin(0x40); // default I2C address
15}
16
17void loop() {
18 Serial.print("Temp: "); Serial.print(hdc1080.readTemperature()); Serial.print(" C ");
19 Serial.print("Humidity: "); Serial.print(hdc1080.readHumidity()); Serial.println(" %");
20 delay(1000);
21}
📄 File: gy-213v_hdc1080_digital_humidity_-_arduino_nano.inoArduino Nano
548 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for Arduino Nano: A4=SDA, A5=SCL. VCC->3.3V or 5V per module label, GND->GND.
6#include <Wire.h>
7#include <ClosedCube_HDC1080.h>
8
9ClosedCube_HDC1080 hdc1080;
10
11void setup() {
12 Serial.begin(115200);
13 Wire.begin();
14 hdc1080.begin(0x40); // default I2C address
15}
16
17void loop() {
18 Serial.print("Temp: "); Serial.print(hdc1080.readTemperature()); Serial.print(" C ");
19 Serial.print("Humidity: "); Serial.print(hdc1080.readHumidity()); Serial.println(" %");
20 delay(1000);
21}
📄 File: gy-213v_hdc1080_digital_humidity_-_arduino_mega.inoArduino Mega
550 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for Arduino Mega: D20=SDA, D21=SCL. VCC->3.3V or 5V per module label, GND->GND.
6#include <Wire.h>
7#include <ClosedCube_HDC1080.h>
8
9ClosedCube_HDC1080 hdc1080;
10
11void setup() {
12 Serial.begin(115200);
13 Wire.begin();
14 hdc1080.begin(0x40); // default I2C address
15}
16
17void loop() {
18 Serial.print("Temp: "); Serial.print(hdc1080.readTemperature()); Serial.print(" C ");
19 Serial.print("Humidity: "); Serial.print(hdc1080.readHumidity()); Serial.println(" %");
20 delay(1000);
21}
📄 File: gy-213v_hdc1080_digital_humidity_-_esp32.inoESP32
549 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for ESP32: GPIO21=SDA, GPIO22=SCL. VCC->3.3V or 5V per module label, GND->GND.
6#include <Wire.h>
7#include <ClosedCube_HDC1080.h>
8
9ClosedCube_HDC1080 hdc1080;
10
11void setup() {
12 Serial.begin(115200);
13 Wire.begin();
14 hdc1080.begin(0x40); // default I2C address
15}
16
17void loop() {
18 Serial.print("Temp: "); Serial.print(hdc1080.readTemperature()); Serial.print(" C ");
19 Serial.print("Humidity: "); Serial.print(hdc1080.readHumidity()); Serial.println(" %");
20 delay(1000);
21}
📄 File: gy-213v_hdc1080_digital_humidity_-_esp8266.inoESP8266
557 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for ESP8266: D2(GPIO4)=SDA, D1(GPIO5)=SCL. VCC->3.3V or 5V per module label, GND->GND.
6#include <Wire.h>
7#include <ClosedCube_HDC1080.h>
8
9ClosedCube_HDC1080 hdc1080;
10
11void setup() {
12 Serial.begin(115200);
13 Wire.begin();
14 hdc1080.begin(0x40); // default I2C address
15}
16
17void loop() {
18 Serial.print("Temp: "); Serial.print(hdc1080.readTemperature()); Serial.print(" C ");
19 Serial.print("Humidity: "); Serial.print(hdc1080.readHumidity()); Serial.println(" %");
20 delay(1000);
21}
📄 File: gy-213v_hdc1080_digital_humidity_-_stm32.inoSTM32
564 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for STM32: PB7=SDA, PB6=SCL (Blue Pill / F103C8). VCC->3.3V or 5V per module label, GND->GND.
6#include <Wire.h>
7#include <ClosedCube_HDC1080.h>
8
9ClosedCube_HDC1080 hdc1080;
10
11void setup() {
12 Serial.begin(115200);
13 Wire.begin();
14 hdc1080.begin(0x40); // default I2C address
15}
16
17void loop() {
18 Serial.print("Temp: "); Serial.print(hdc1080.readTemperature()); Serial.print(" C ");
19 Serial.print("Humidity: "); Serial.print(hdc1080.readHumidity()); Serial.println(" %");
20 delay(1000);
21}
📄 File: gy-213v_hdc1080_digital_humidity_-_raspberry_pi_pico.inoRaspberry Pi Pico
559 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// I2C wiring for Raspberry Pi Pico: GPIO4=SDA, GPIO5=SCL. VCC->3.3V or 5V per module label, GND->GND.
6#include <Wire.h>
7#include <ClosedCube_HDC1080.h>
8
9ClosedCube_HDC1080 hdc1080;
10
11void setup() {
12 Serial.begin(115200);
13 Wire.begin();
14 hdc1080.begin(0x40); // default I2C address
15}
16
17void loop() {
18 Serial.print("Temp: "); Serial.print(hdc1080.readTemperature()); Serial.print(" C ");
19 Serial.print("Humidity: "); Serial.print(hdc1080.readHumidity()); Serial.println(" %");
20 delay(1000);
21}
I2C temperature + humidity sensor (HDC1080 chip).

نظرة عامة ومواصفات المنتج — بالعربية

GY-213V HDC1080 Digital Humidity متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors وTemperature & Humidity Sensor، بسعر 195,00 EGP. كود المنتج لدينا: EK1563. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

أهم المواصفات الفنية:

  • Sensor Chip: HDC1080
  • Measurement Range: 0% to 100% Relative Humidity (RH)
  • Humidity Accuracy: ±4% RH (typical), ±6% RH (maximum)
  • Resolution: 14-bit (0.01% RH per bit)
  • Current Consumption: Active Mode: 0.5 mA (typical) Sleep Mode: < 1 µA
  • Power Supply: 3.3V to 5V DC
  • واجهة الاتصال: I2C (Inter-Integrated Circuit)
  • I2C Address: 0x40 (default)

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Sensors في إكوسترا.

Specification

Specification

WeightWeight6 g
Dimensions3 × 2 × 1 cm
sensor-chipHDC1080
measurement-range0% to 100% Relative Humidity (RH)
humidity-accuracy±4% RH (typical), ±6% RH (maximum)
resolution14-bit (0.01% RH per bit)
current-consumptionActive Mode: 0.5 mA (typical) Sleep Mode: < 1 µA
power-supply3.3V to 5V DC
interfaceI2C (Inter-Integrated Circuit)
i2c-address0x40 (default)
operating-temperature-range-40°C to +125°C (sensor range), -20°C to +60°C (typical operating range)
dimensionsApproximately 25mm x 20mm x 5mm
connector4-pin header (GND, VCC, SDA, SCL)
data-outputDigital (Humidity and Temperature data)
package-includesGY-213V Module, Pin Header

Customer Reviews