• +965 51122049
Optical broken module ( ARDUINO photo interrupter module )

Optical broken module ( ARDUINO photo interrupter module )

KWD0.250

Optical broken module ( ARDUINO photo interrupter module )


4 products available

 

 


Share:

Slotted light barrier. The middle pin connects to + 5 V supply and the pin marked ‘-’ 
connects to ground. The output signal (with a 10 K ohm pullup to +5 V) is available on 
the pin on the right. 

 

Schematic

If you view from the top like on the photo

  • Left = Ground
  • Middle = +5V
  • Right = Signal

Connect the module to the arduino as follows:

  • Arduino pin GND to module GND
  • Arduino digital pin 3 to module Signal
  • Arduino pin 5V to module 5V

Example Code

// Example code for KY-010
	
	
// photo interrupter module
	
	
 
int
	
	 Led =
	
	 13
	
	 ;
	
	// define LED Interface
	
	
int
	
	 buttonpin =
	
	 3
	
	;
	
	 // define the photo interrupter sensor interface
	
	
int
	
	 val ;
	
	// define numeric variables val
	
	
void
	
	 setup ()
	
	
{
	
	
  pinMode (
	
	Led,
	
	 OUTPUT)
	
	 ;
	
	// define LED as output interface
	
	
  pinMode (
	
	buttonpin,
	
	 INPUT)
	
	 ;
	
	// define the photo interrupter sensor output interface   
	
	
}
	
	
void
	
	 loop ()
	
	
{
	
	
  val =
	
	 digitalRead (
	
	buttonpin)
	
	 ;
	
	// digital interface will be assigned a value of 3 to read val
	
	
  if
	
	 (
	
	val ==
	
	 HIGH)
	
	 // When the light sensor detects a signal is interrupted, LED flashes
	
	
  {
	
	
    digitalWrite (
	
	Led,
	
	 HIGH)
	
	;
	
	
  }
	
	
  else
	
	
  {
	
	
    digitalWrite (
	
	Led,
	
	 LOW)
	
	;
	
	
  }
	
	
}
	
	

Add your review

Your email address will not be published. Required fields are marked *

Please login to write review!

Upload photos

Looks like there are no reviews yet.

Related Products

Your experience on this site will be improved by allowing cookies.