Crowtail- Laser Pointer

From Elecrow
Revision as of 05:33, 22 August 2019 by Admin (talk | contribs) (Created page with "== Description == A change of Laser Pointer is that we make it compatible with Crowtail base board, you can use it more easier than before. This laser pointer or laser pen...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

A change of Laser Pointer is that we make it compatible with Crowtail base board, you can use it more easier than before. This laser pointer or laser pen is a small handheld device with a laser diode emitting a very narrow coherent low-powered laser beam of visible light, it is frequently used in lecture halls and demonstrations to point at topics of interest on a presentation board. In a school setting, they have become ubiquitous, and they are very useful teaching aids. Please note that DO NOT Point this module to eyes directly, It may cause some blindness, glare and afterimages.

Model: CT0048CLP
CT0048CLP-07.jpg

Features

  • Supply voltage:5V
  • Power:5mW
  • Wavelength :650nm
  • Dimensions(mm):26.4(L)x20.0(W)x7.9(H)

Usage

1.Hardware Connection
Plug the Crowtail- Laser Pointer onto the D5 port on Crowtail - Base Shield, and then plug the base shield onto Crowduino;

Crowtail- Laser Pointer11.jpg

2.Download the library from here Crowtail- Laser Pointer [Crowtail- Laser Pointer Program]

3.Unzip it into the libraries file of Arduino IDE by the path: ..\arduino-1.0.1\libraries.

4.Create an Arduino sketch and paste the following codes to it or open the code directly by the path:File -> Example -> Crowtail- Laser Pointer.

int Laser_Pointer = 5;


void setup() {                

  pinMode(Laser_Pointer, OUTPUT);     
}


void loop() {
  digitalWrite(Laser_Pointer, HIGH);   
  delay(2000);            
  digitalWrite(Laser_Pointer, LOW);  
  delay(1000); 
}

4.Upload it into your Crowduino board and observe the change of the Laser Pointer's light.

Resource