Photoelectric Speed Sensor Encoder Coded Disc Code Wheel
Rs. 512.00 Rs. 615.00
- Product Code: SEN-SPEED
- SKU -
- Availability: In Stock
- Price in reward points: 7
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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