Electorials Electronics
Published © LGPL

Review 002: TEMT6000 Ambient Light Sensor Review

A review of the TEMT6000 Ambient Light Sensor from ICStation.

BeginnerProtip502
Review 002: TEMT6000 Ambient Light Sensor Review

Things used in this project

Hardware components

ICStation TEMT6000 Ambient Light Sensor
×1
PCBWay Custom PCB
PCBWay Custom PCB
×1

Story

Read more

Code

Arduino TEMT6000 Ambient Light Sensor Sample Code

C/C++
int temt6000Pin = 0;
void setup() {
  Serial.begin(9600);
}
void loop() {
  int value = analogRead(temt6000Pin);
  Serial.println(value); 
  delay(200);
}

Credits

Electorials Electronics

Electorials Electronics

85 projects • 63 followers
I'm an electronic hobbyist interested in anything, from Arduino to drones. I plan to educate people with the content on my website.

Comments