KY-008 Laser Transmitter Module for arduino Compatible with UNO MEGA 2560
Dot laser
Operating voltage 5V
Power 5Mw
Wavelength 650nm
OD 6mm
- This 5V laser head very easy to use, you can use Arduino control, do controllable laser pointer, theft detection, etc. interesting application devices.
- Whenever the laser can not point to themselves or others eyes, even if the case is closed the laser will have to open the possibility of error.
- the laser is not a toy, do not give children, mental insufficiency, for people who do not understand the use of the laser characteristics, in this case, can easily lead to injury.
- the use of lasers should wear special goggles, for the invisible laser, this point is particularly important.
- the laser can not shine in vehicles, aircraft and other transport vehicles someone.
void setup ()
{
pinMode (13, OUTPUT); // define the digital output interface pin 13
void loop () {
digitalWrite (13, HIGH); // open the laser head
delay (1000); // delay 1 second
digitalWrite (13, LOW); // turn off the laser head
delay (1000); // delay 1e second
}