Sensor Óptico Reflectivo TCRT5000
- Em promoção!
- -0,50 €
Este módulo de sensor reflexivo IR usa o sensor IR TCRT5000 para detectar cor ( diferença de preto para branco ) e distâncias ( 1 mm ~ 25 mm ). Este módulo sensor consiste num transmissor IR e um receptor IR. O transmissor IR emite continuamente um sinal IR que é então refletido por um obstáculo e então detectado pelo receptor IR.
DESCRIÇÃO EM PORTUGUÊS BREVEMENTE DISPONÍVEL
Se tiver alguma dúvida neste produto não hesite em contactar-nos.
*Atenção: as imagens são meramente ilustrativas.
TCRT5000 Infrared Reflective Sensor Module is often used in line following robots, object sorting Robots because this module can sense if a surface is white or black. The measuring distance range from 1mm to 8mm and the central point is about 2.5mm.
There is also an onboard potentiometer to adjust the sensitivity. The infrared diode will be emitting the infrared continually when the module is powered ON, when the emitted infrared light has not been reflected or the strength is not big enough, the receiver diode will in the off state and output pin i.e. DO will be LOW.
Applications:
Notes:
Ex code:
// for Arduino microcontroller
const int digital_pin = 7;
const int analog_pin = A0;
// for ESP8266 microcontroller
//const int digital_pin = D7;
//const int analog_pin = A0;
// for ESP32 microcontroller
//const int digital_pin = 4;
//const int analog_pin = 0;
void setup(){
Serial.begin(9600);
pinMode(digital_pin,INPUT);
}
void loop(){
Serial.print("Analog Reading=");
Serial.print(analogRead(analog_pin));
Serial.print("\t Digital Reading=");
Serial.println(digitalRead(digital_pin));
delay(1000);
}
Produtos Associados