Wish List 0

Cjmcu Temt6000 An Ambient Light Sensor

Rs. 61.00 Rs. 74.00

  • Brand: https://www.vishay.com/ppg?81579
  • Product Code: SEN-AMBIENT
  • SKU - SE-1495
  • Availability: In Stock
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-This CJMCU-TEMT6000 An Ambient Light Sensor module makes use of a unique ambient mild detector(TMET6000) with a spectral response that intently emulates the human eye.
-It helps you to discover the mild density and reflect the analog voltage signal lower back to the Arduino controller.
-You can set the threshold of a voltage stage to trig every other unit on the Arduino project.

-CJMCU-TEMT6000  is an ambient light sensor is a silicon NPN epitaxial planar phototransistor in a miniature transparent 1206 bundle for surface mounting.
-It is sensitive to visible mild much like the human eye and has peak sensitivity at 570 nm.
-While this device may be very sensitive to ambient light, but which inhibit infrared (IR) spectrum, which could offer similar “to the human eye, ” the seen spectrum extra responsiveness.
APPLICATIONS:
Ambient light sensor for control of display backlight dimming in LCD displays and keypad backlighting of mobile devices and in industrial on/off-lighting operation.
1. Automotive sensors
2. Mobile phones
3. Notebook computers
4. PDA’s
5. Cameras

SPECIFICATIONS:
Power supply mode          3.3 ~ 5 V
Maximum Current            20 mA
Collector-emitter voltage  1.5 V
Wavelength                 570 nm
Detection angle 60 c 

OVERVIEW:

-AEC-Q101 qualified

-High photosensitivity

-Near-Human Eye Spectral Response

-Scalable Output Voltage

-Adapted to human eye responsivity

-Lead (Pb)-free reflow soldering

-Compliant to RoHS Directive 2002/95/EC and in

-accordance to WEEE 2002/96/EC


PACKAGE INCLUDES:

1 PCS x Cjmcu Temt6000 Ambient Light Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//http://arduinolearning.com/code/arduino-temt6000-light-sensor.php


#define LIGHTSENSORPIN A1 //Ambient light sensor reading

 

void setup() 

{

pinMode(LIGHTSENSORPIN, INPUT); 

Serial.begin(9600);

}

 

void loop() 

{

float reading = analogRead(LIGHTSENSORPIN); //Read light level

float square_ratio = reading / 1023.0; //Get percent of maximum value (1023)

square_ratio = pow(square_ratio, 2.0); 

Serial.println(reading); 

delay(1000);

15 days

Write a review

Please login or register to review