728x90

 

 

 

저전력이며, 오랜 사용에도 안정적이고 보정된 디지털 신호를 출력하는 제품으로, 보정용 8비트 마이크로컨트롤러가 센서내에 통합되어 있어 정교한 온도 측정을 제공합니다.

 

정격 전압: +5 V (3.5V~5.5VDC)

 

온도 범위 :0-50 °C ± 2 °C

 

습도 범위 :20-90% RH ± 5%

# 모듈 형식이라서, 다른 저항 없이 바로 아두이노에 연결해도 동작 잘 됨.

 

# 샘플코드

아두이노IDE에서 "DHT sensor Library"추가 후,

소스중에 DHT_U.h, DHT_U.cpp 파일 제거 후 예제 컴파일. 해당 소스에 제조사 관련 헤더파일 때문에 오류남. 없어되 되는 소스라 삭제.

// Example testing sketch for various DHT humidity/temperature sensors
// Written by ladyada, public domain

#include "DHT.h"

#define DHTPIN 2     // what digital pin we're connected to

// Uncomment whatever type you're using!
#define DHTTYPE DHT11   // DHT 11
//#define DHTTYPE DHT22   // DHT 22  (AM2302), AM2321
//#define DHTTYPE DHT21   // DHT 21 (AM2301)

// Connect pin 1 (on the left) of the sensor to +5V
// NOTE: If using a board with 3.3V logic like an Arduino Due connect pin 1
// to 3.3V instead of 5V!
// Connect pin 2 of the sensor to whatever your DHTPIN is
// Connect pin 4 (on the right) of the sensor to GROUND
// Connect a 10K resistor from pin 2 (data) to pin 1 (power) of the sensor

// Initialize DHT sensor.
// Note that older versions of this library took an optional third parameter to
// tweak the timings for faster processors.  This parameter is no longer needed
// as the current DHT reading algorithm adjusts itself to work on faster procs.
DHT dht(DHTPIN, DHTTYPE);

void setup() {
  Serial.begin(9600);
  Serial.println("DHTxx test!");

  dht.begin();
}

void loop() {
  // Wait a few seconds between measurements.
  delay(2000);

  // Reading temperature or humidity takes about 250 milliseconds!
  // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
  float h = dht.readHumidity();
  // Read temperature as Celsius (the default)
  float t = dht.readTemperature();

  // Check if any reads failed and exit early (to try again).
  if (isnan(h) || isnan(t)) {
    Serial.println("Failed to read from DHT sensor!");
    return;
  }

  Serial.print("Humidity: ");
  Serial.print(h);
  Serial.print(" %\t");
  Serial.print("Temperature: ");
  Serial.print(t);
  Serial.println(" *C ");
}
728x90
Posted by 하루y
728x90

1. Product Overview

Name: MoistureSensor soil moisture sensor

Item No: SEN030003

Manufacturing: YwRobot

 

 

2. Technical Parameters

Size: 60 * 20mm

Weight: 4g

Voltage: 3.3V, 5V

Port: Analog voltage

Output voltage: 5V power supply, about 0-3.6V (3.6V voltage is completely immersed in water)

Output voltage values are for reference, because different water quality factors, see the actual measurement

Detection Area: 40 * 20mm

Detection surface: Gold-plated

Platform: Arduino

 

 

3. Product Feature

This module is a simple moisture sensor, use measuring changes in moisture and humidity resistance

The drier the soil, the output voltage is smaller. The more humid the larger output voltage

The module will be inserted into the soil, by the AD converter voltage signal can be detected in soil moisture

Can Arduino, pumps connected to form an automatic watering system

Immersion sensor technology, increased service life

Note: This sensor is a consumable, life is about 6-12 months (soil environment)

 

 

# 샘플소스

  // 토양 센서 처리 //////////////////////////
  int soilAnalogValue = analogRead(SOILSENSOR_PIN);
  int soilDigitalValue = map(soilAnalogValue, 0, 630, 0, 100); // Max(물에 잠길때) : 540 ~ 630, Min: 0
  soilDigitalValue = constrain(soilDigitalValue, 0, 100);
728x90
Posted by 하루y
728x90

 

(만능) 기판용(pitch2.5~2.54mm)은 pitch가 2.50mm 인 상품을 선택해야 함.

- Female:5264 / header: 5067, 5068(Right Angle)

- Female:5051 / header: 5045, 5046(Right Angle)

- Female:35312/ header: 35155

 

728x90
Posted by 하루y
728x90

 

Parameters

 

- 크기 : 28 *의 24mm

- 전압 : 3.3V, 5V

- 포트 : 아날로그 전압 레벨 신호 듀얼 출력 스위치

- 프로브 : 포토 레지스터

- 검출 등 : 가시 광선

- 검출 각도 : 160 °

- 검출 방법 : 분압 피드백

- 플랫폼 : 아두 이노, MCU

- DOUT은 : 레벨 신호 출력은 전위차계에 의해 설정된 임계 값 출력이 낮은 도달 (0 or 1) -> 가변저항 조정에 따라 on/off

- AOUT : 아날로그 전압 출력, 현재의 밝기가 반영 AD 변환 처리를 필요

- 포토 레지스터 형 센서 검출 범위는, 주위의 밝기를 다양한 검출하도록

 

PS. 어두울 수록 AOUT 값이 커짐. #GL7528 과는 반대.

728x90

'Programming Language > 아두이노, 라즈베리파이' 카테고리의 다른 글

Soil Moisture Sensor Module [SEN030003]  (0) 2024.01.08
MOLEX 커넥터 : Wire to Board  (0) 2024.01.08
ESP8266 ESP-01 어댑터  (0) 2024.01.08
ESP8266  (1) 2024.01.08
ESP8266 라이브러리: 다른 버전  (0) 2024.01.08
Posted by 하루y