본문 바로가기

Arduino/[2] Arduino Module

[Arduino Module] #23. 레이저 발광

728x90
반응형

레이저 발광

레이저(LASER)란 유도방출에 의한 광 증폭(Light Amplification by the Stimulated Emission of Radiation)을 의미한다.

 

레이저를 발생시키는 장치는 레이저 매질이 있는 공진기 양쪽에 거울이 달린 형태이며, 그 매질로는 고체, 액체, 기체, 반도체 등을 사용할 수 있다.

 

외부에서 에너지를 레이저 매질에 넣어 주면 매질에서 빛이 발생하고, 이때 발생하는 빛이 거울과 부분거울로 구성된 공진기 안에서 유도방출을 일으켜 증폭되어 레이저광선이 된다.

레이저 발광 모듈의 구조

회로도

회로도

- GND
+ 5V
S 13번 핀

코드

int Lazer = 13;
void setup() {
  // put your setup code here, to run once:
  pinMode(Lazer,OUTPUT);

}

void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(Lazer,HIGH);
  delay(500);
  digitalWrite(Lazer,LOW);
  delay(500);
}
728x90
반응형
댓글