công cụ tìm kiếm bảng dữ liệu linh kiện điện tử
  Vietnamese  ▼
ALLDATASHEET.VN

X  

  • Y-3-R

  • AI
    Based on common industrial and hobbyist electronic components, **Y-3-R** typically refers to a specific wiring or labeling convention often found in **3-wire sensors (Inductive/Photoelectric)** or **Addressable LED strips**. Below is the breakdown of what these parts represent and their technical specifications. --- ## 1. Typical Wiring Convention In many industrial sensors and LED controllers, "Y-3-R" signifies the color-coded pinout or wire identification. | Label | Color | Common Function (Sensor) | Common Function (LED) | | :--- | :--- | :--- | :--- | | **Y** | Yellow | Signal Output (Pulse/Data) | Data Signal (DI) | | **3** | (Refers to 3-wire) | Ground (Common) | Power Negative (GND) | | **R** | Red | Positive Voltage (VCC) | Positive Voltage (+5V/12V) | --- ## 2. Component Types Most parts labeled with a Y-3-R naming scheme fall into these two categories: ### A. Inductive Proximity Sensors Commonly used in 3D printers and automation. * **Operating Voltage:** 6V - 36V DC. * **Output Type:** NPN or PNP (Normally Open/Closed). * **Detection Range:** 2mm to 10mm typically. ### B. Addressable RGB LED Strips Often seen in DIY electronics (like WS2812B modules). * **Logic:** Digital signal control. * **Structure:** Integrated IC within the LED housing. * **Wiring:** Requires a microcontroller (Arduino/ESP32) to send data via the **Yellow** line. --- ## 3. Technical Parameters If you are integrating a Y-3-R component into a circuit, refer to these standard values: ```cpp // Example: Basic Arduino Setup for a 3-wire sensor const int signalPin = 2; // Yellow wire connected here void setup() { pinMode(signalPin, INPUT_PULLUP); Serial.begin(9600); } void loop() { int sensorState = digitalRead(signalPin); Serial.println(sensorState); delay(100); } ``` --- ## 4. Troubleshooting Guide If the part is not functioning, check the following: 1. **Voltage Matching:** Ensure the Red wire (R) is receiving the exact voltage specified (e.g., don't put 12V into a 5V LED). 2. **Logic Level:** If using a Yellow signal wire with a 3.3V microcontroller, you may need a logic level shifter. 3. **Common Ground:** The "3" or Ground wire must be shared with the controller's ground.
    ✨ Follow-up Questions
    • ⤷ Are you referring to a specific brand of sensor like Omron or Autonics?
    • ⤷ What is the specific voltage rating labeled on your Y-3-R component?
    • ⤷ Do you need a circuit diagram for connecting this part to a microcontroller?