Cjmcu Temt6000 An Ambient Light Sensor
Rs. 61.00 Rs. 74.00
- Brand: https://www.vishay.com/ppg?81579
- Product Code: SEN-AMBIENT
- SKU -
- 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
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
https://www.vishay.com/ppg?81579
//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