Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Electorials Electronics
Published © GPL3+

Project 009: Arduino TEMT6000 Light Sensor Project

An extremely simple analog project measuring various ambient light levels with a small TEMT6000 sensor and an Arduino.

BeginnerProtip12 minutes11,263
Project 009: Arduino TEMT6000 Light Sensor Project

Things used in this project

Hardware components

SparkFun TEMT6000 Ambient Light Sensor
×1
Arduino UNO
Arduino UNO
You could use any other Arduino board as well. The Keyestudio Uno is used in this example.
×1
Jumper wires (generic)
Jumper wires (generic)
3 Male to Female Jumper Wires
×3
USB-A to B Cable
USB-A to B Cable
Depends on the Arduino.
×1
NextPCB
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Circuit Diagram

Schematics

Code

Arduino TEMT6000 Ambient Light Sensor Project 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
85 projects • 66 followers
I'm an electronic hobbyist interested in anything, from Arduino to drones. I plan to educate people with the content on my website.
Contact

Comments

Please log in or sign up to comment.