Need help? Call us:

+356 27443236

Menu 2 Menu

KY-033 TCRT5000 Tracking Module

0.80 inc vat

In stock

Estimated Delivery Time: Within 24 hours

or

Have any Questions?

Feel free to Get in touch

Pay safely with Visa Pay safely with Master Card Pay safely with PayPal Pay safely with Maestro
Guarantee Safe and Secure Payment Checkout
  • Precise line tracking: The KY-033 line follower module, also known as TCRT5000, is designed for accurate line tracking on surfaces using an optical sensor.
  • Infrared LED and phototransistor: The module consists of an infrared LED that emits infrared radiation and a phototransistor that detects the reflected light from the line being tracked.
  • Resistance-based position detection: By measuring the changes in the resistance of the phototransistor based on the amount of reflected light, the module can determine the position of the line.
  • Versatile applications: The KY-033 line follower module is widely used in automatic control systems for vehicles and other devices that require precise line tracking.
  • Adjustable sensitivity: The module features an adjustable potentiometer that allows users to fine-tune the sensitivity according to the specific line-tracking requirements.
  • Wide operating voltage range: The KY-033 module operates effectively within the voltage range of 3.3V to 5V, making it compatible with various microcontroller boards and systems.

    The KY-033 TCRT5000 Tracking Module, also known as a line follower module, is a versatile sensor designed for precise line tracking applications. It utilizes an optical sensor consisting of an infrared LED and a phototransistor to accurately detect and track lines on surfaces. The module emits infrared radiation from the LED, which is then reflected off the surface being tracked. The phototransistor detects the reflected light, and by measuring the changes in its resistance, the module can determine the position of the line. The KY-033 line follower module finds applications in various automatic control systems, particularly in vehicles and devices that require accurate line tracking capabilities. One of the notable features of the module is its adjustable sensitivity. It includes a potentiometer that allows users to fine-tune the sensitivity based on the specific line-tracking requirements of their project. The KY-033 operates within a wide voltage range of 3.3V to 5V, making it compatible with different microcontroller boards and systems commonly used in electronic projects. With its precise line tracking capabilities, adjustable sensitivity, and compatibility with various systems, the KY-033 TCRT5000 Tracking Module offers a reliable solution for applications that require accurate line-following functionality.

    KY-033 SPECIFICATIONS

    On the front side, this module has an infrared emitter/receiver, an adjustable potentiometer, a LM393 differential comparator, and an indicator LED. The back side has 4 resistors, two of which are 10 kΩ, one is 1.5 kΩ and the other one is 220 Ω.

    The KY-033 has 3 pins: GNDOUT, and VCC. The output pin of the module is digital, its state is HIGH when the module is on top of a black surface, signaling that a line is detected. The state is LOW when the module is on top of a white surface, signaling that a line is not detected.

    The indicator LED turns on when the infrared light is reflected back to the receiver, meaning that a line is not detected.

    Working voltage 3.3V — 5.5V DC
    Output signal TTL level (high level if line detected, low if no line detected)
    Board Size 1cm x 4.2cm [0.39in x 1.65in]

    CONNECTION DIAGRAM

    Connect the GND pin on the KY-033 to GND on the Arduino and the VCC pin to 5V. Then connect the OUT pin of the module (middle one) to pin 7 on the Arduino.

    Keep in mind that some modules have a different pin configuration, always check your module before connecting it to the Arduino.

    KY-033 Arduino
    GND GND
    OUT Pin 7
    VCC 5V
    Arduino KY 033 connection diagram

    KY-033 ARDUINO CODE

    In the following Arduino sketch, we’ll read the digital signal from the output pin of the KY-033 every 500 milliseconds, and use the serial interface to send messages to the computer.

    The signal will be HIGH when the module is in front of an opaque (black) surface, indicating that a line has been detected. The signal will be LOW when the module is in front of a reflective (white) surface, meaning that a line is not detected.

    int sensorPin = 7;  // line detection sensor interface
    int val;            // variable to store sensor reading
    
    void setup() {
      pinMode(sensorPin,INPUT);  // define sensor as input  
      Serial.begin(9600);     // initialize serial communication with PC
    }
    
    void loop() {
      val = digitalRead(sensorPin); // read value from sensor
      
      if (val == HIGH) { 
        Serial.println("Line detected"); 
      } else { 
        Serial.println("Line NOT detected"); 
      }
    
      delay(500);
    }

    Use Tools > Serial Monitor on the Arduino IDE to see the results, make sure to adjust the transmission speed to 9600 baud.

    Arduino KY 033 serial monitor output
KY-033 TCRT5000 Tracking Modul...

0.80 inc vat

In stock