jimdt7
0
- Joined
- Feb 5, 2011
- Messages
- 1,893
- Points
- 48
Hello i recenlty bought an arduino uno. I want to connect it to my 1W 445nm laser. Its a xj-140 diode with a NJG-18 driver. How can i connect it to my arduino ??:thinking:
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
void setup(){
pinMode(12, OUTPUT); // SETS PIN 12 AS TTL +
}
void loop(){
digitalWrite(12, HIGH);
delay(500);
digitalWrite(12, LOW);
}
void setup(){
pinMode(12, OUTPUT); // SETS PIN 12 AS TTL +
}
void loop(){
digitalWrite(12, HIGH);
delay(500);
digitalWrite(12, LOW);
delay(500);
}