Wish List 0

Photoelectric Speed Sensor Encoder Coded Disc Code Wheel

Rs. 837.00 Rs. 1,005.00

  • Product Code: SEN-SPEED
  • SKU -
  • Availability: 2-3 Days
  • Price in reward points: 7
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
The Photoelectric Speed Sensor Encoder Coded Disc code wheel is a Slotted Opto isolator module, with an IR transmitter & a photodiode set up on it. Performs Non-Contact Object Sensing. This is generally used as positional sensor switch (restrict transfer) or as Position Encoder sensors used to find the placement of the wheel.

The module consists of IR LED and Photodiode established going through every other enclosed within the plastic frame.

Features :

1. Small and Easy to use the module.

2. It offers the fast response at a very good accuracy

3. Two signal lines, one yellow, one blue.

4. Yellow and blue are two TTL level signals

5. (Note: Measuring Reversible rely on these two levels to distinguish between forward or reverse).



SPECIFICATIONS
Material                  Steel
Supply Voltage (V)        5V
Number of lines           100 lines
Production process        Laser Cutting
Outer Diameter (OD)(mm)   22mm
Inner Diameter (ID) (mm)  3.5
Thickness (mm)            0.3

OVERVIEW:

-Brand new and high quality.

-Small and Easy to use the module.

-It offers the fast response at a very good accuracy

-Two signal lines, one yellow, one blue.

-Yellow and blue are two TTL level signals

PACKAGE INCLUDES:

1 PCS x Photoelectric Speed Sensor Encoder Coded Disc Code Wheel


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.electroniclinic.com/tof10120-laser-rangefinder-arduino-display-interfacing-code/

#include <Wire.h>

 

void setup()

{

    Wire.begin();

    Serial.begin(115200);

    Serial.println("\nI2C Scanner");

}

 

void loop()

{

    byte error, address;

    int nDevices;

 

    Serial.println("Scanning...");

 

    nDevices = 0;

    for(address = 0; address <= 127; address++ )

    {

        Wire.beginTransmission(address);

        error = Wire.endTransmission();

        if (error == 0)

        {

            Serial.print("I2C device found at address 0x");

            if (address<16)

                Serial.print("0");

            Serial.print(address, HEX);

            Serial.println(" !");

            nDevices++;

        }

        else if (error==4)

        {

            Serial.print("Unknow error at address 0x");

            if (address<16)

                Serial.print("0");

            Serial.println(address,HEX);

        }

    }

    if (nDevices == 0)

        Serial.println("No I2C devices found\n");

    else

        Serial.println("done\n");

    delay(30000);

 }

15 days 

Write a review

Please login or register to review