Ambient Light Sensor Module TEMT6000 - Analog Output
-
RM8.50
- Product Code: TEMT6000
- Availability: In Stock
As we know, most of the modern devices which use Light sensors are notably used for auto-brightness according to light intensity. The device includes mobile phone screens and digital cameras for adjusting exposure. So here we will use one of the best light sensors, i.e TEMT6000 Ambient Light Sensor and interface it with Arduino to measure the light intensity.
Specifications
Pins
SIG | Output Voltage from the divider circuit |
---|---|
GND | GND (0V) |
VCC | Collector Voltage (5V) |
How to
temt6000-ambient-light-sensor-arduino-measure-light-intensity
Arduino Sketch
Signal → A1
int lightLevel; void setup() { Serial.begin(9600); } void loop() { lightLevel = analogRead(A1); Serial.println(lightLevel, DEC); delay(500); }