yl105 datasheet better
Previous article
Now Reading:
How Many Names of Ganesha? Understanding the 12 Names of Lord Ganesha

Yl105 — Datasheet Better

Understanding Datasheets

Datasheets are crucial documents provided by manufacturers that detail the specifications, characteristics, and sometimes application notes for electronic components. When comparing datasheets, especially for a component like the YL105 (which could refer to a specific electronic part, e.g., a connector, a semiconductor, etc.), consider the following aspects:

  1. Electrical Characteristics: Look for key electrical parameters such as voltage rating, current rating, resistance, capacitance, etc., depending on the type of component.

  2. Physical Dimensions: Check the dimensions and packaging type. This is crucial for ensuring the component fits your PCB or project enclosure.

  3. Material and Reliability: Information on the materials used, MTBF (Mean Time Between Failures), and other reliability indicators can be crucial for long-term projects. yl105 datasheet better

  4. Environmental Ratings: Consider the component's ability to operate in various environmental conditions, such as temperature range, humidity, and resistance to shock or vibration.

  5. Certifications and Compliance: Look for certifications like RoHS compliance, UL (Underwriters Laboratories) listings, etc., which can affect the component's suitability for certain applications.

  6. Application Notes and Reference Designs: A good datasheet often includes application notes or reference designs that can help in integrating the component into your project. Physical Dimensions : Check the dimensions and packaging

The Science: How It Actually Works

The sensing pad doesn't "detect" water like a camera sees it. It relies on conductivity.

The grid pattern consists of interlaced traces that are not connected. When dry, the resistance between them is near-infinite (open circuit). When raindrops bridge the gap, the water acts as a conductor, lowering the resistance significantly.

The control board acts as a Voltage Divider. As resistance drops on the pad, the voltage at the AO pin changes. 1. YL-105 vs. YL-69 (Resistive)

  • Dry: High Voltage (near VCC).
  • Wet: Low Voltage (closer to GND).

YL-105 Technical Specifications (The Better Datasheet)

Here are the specs you actually need for your design calculations:

| Parameter | Specification | | :--- | :--- | | Operating Voltage | 3.3V – 5V (Most variants have a voltage regulator) | | Operating Current | < 40mA (varies by transmission power) | | Communication Method | UART (Serial) | | Default Baud Rate | 9600 bps (Check specific module settings) | | Frequency | 433 MHz (Standard) | | Transmission Distance | 30m – 100m (Open air, dependent on antenna) | | Interface | 4-Pin Header (VCC, GND, TX, RX) | | Modulation | ASK / OOK (Typical for low-cost RF) |

Key Note on Voltage: While many YL-105 boards accept 5V on VCC, the data pins (TX/RX) are often 3.3V logic. If you are using a 5V Arduino (Uno/Nano), it is safest to use a logic level converter or a voltage divider on the RX pin of the module to prevent damage.


3. Better for 3.3V Logic

Many engineers overlook this. The DHT11's output high voltage is 4V minimum when run at 5V—this can damage a 3.3V ESP32. The YL105 datasheet states that signal levels are TTL compatible and function reliably down to 3.3V because the onboard regulator handles the conversion.

Verdict: If you are building a battery-powered ESP8266 or ESP32 project, the YL105 is the better datasheet choice.


1. YL-105 vs. YL-69 (Resistive)

  • YL-105 Pros: No DC contact with soil, less electrolysis, longer lifespan (6 months vs 2 months).
  • YL-105 Cons: Sensitive to cable length (capacitance changes). Non-linear output.
  • Winner: YL-105 is better for long-term deployment.

Bad Code (Causes Missed Readings):

// DO NOT DO THIS
void setup() 
  pinMode(2, OUTPUT);
  digitalWrite(2, LOW);
  delay(1); // Too short! Datasheet says 18ms minimum
  pinMode(2, INPUT);