Electorials Electronics
Published © LGPL

Review 001: KY-008 Laser Module Review

A review of the KY-008 Laser Module from ICStation.

BeginnerProtip2,682
Review 001: KY-008 Laser Module Review

Things used in this project

Hardware components

ICStation KY-008 Laser Module
×1
PCBWay Custom PCB
PCBWay Custom PCB
×1

Story

Read more

Code

Arduino KY-008 Laser Module Sample Code

C/C++
int laserPin = 10;
void setup ()
{
   pinMode (laserPin, OUTPUT); 
}
void loop () {
   digitalWrite (laserPin, HIGH); 
   delay (1000); 
   digitalWrite (laserPin, LOW); 
   delay (500); 
}

Credits

Electorials Electronics

Electorials Electronics

85 projects • 63 followers
I'm an electronic hobbyist interested in anything, from Arduino to drones. I plan to educate people with the content on my website.

Comments