STM32 Light Sensor (LDR) Interfacing – Ambient Light Sensor Project

Previous Tutorial Previous Tutorial Tutorial 25 Next Tutorial Next Tutorial
STM32 LDR Interfacing – Ambient Light Sensor Project
STM32 Course Home Page ????

 

STM32 Light Sensor Interfacing Project With LDR - STM32 Projects And Tutorials

 

In this LAB, we’ll create a simple STM32 project using the LDR (light dependent resistor) as a light sensor to sense the ambient light intensity and map it to a PWM duty cycle and get this signal out on an LED. So that the LED brightness increases as the surrounding gets darker.

[toc]


   Required Components For LABs   

 

All the example code/LABs/projects in the course are going to be done using those boards below.

QTY Component Name ???? Amazon.com ???? eBay.com
2 BreadBoard Amazon eBay
1 LEDs Kit Amazon Amazon eBay
1 Resistors Kit Amazon Amazon eBay
1 Capacitors Kit Amazon Amazon eBay & eBay
2 Jumper Wires Pack Amazon Amazon eBay & eBay
1 9v Battery or DC Power Supply Amazon Amazon Amazon eBay
1 Micro USB Cable Amazon eBay
1 Push Buttons Amazon Amazon eBay
1 LDR (Light Dependent Resistor)  Amazon eBay

★ Check The Full Course Complete Kit List

Some Extremely Useful Test Equipment For Troubleshooting:

Affiliate Disclosure: When you click on links in this section and make a purchase, this can result in this site earning a commission. Affiliate programs and affiliations include, but are not limited to, the eBay Partner Network (EPN) and Amazon.com.


   STM32 Light Sensor (LDR) Interfacing   

STM32 Light Sensor Interfacing Project - STM32 Projects

An LDR is a light-dependent resistor, it’s an electronic device that is being used for light intensity sensing applications. The LDR has a relatively low resistance in light, and when the surrounding gets darker the LDR’s resistance significantly increases. Hence, we can make a voltage divider circuit using the LDR and a fixed resistor and use the microcontroller’s ADC to measure the voltage which indicates the resistance value or the light intensity level. An LDR can have a resistance of 5kΩ in daylight, 8kΩ in room light, and up to 2MΩ in darkness.

STM32 Light Sensor Interfacing Project - STM32 Project LDR

 


   STM32 Light Sensor Project – LAB20   

 

LAB Number 20
LAB Title STM32 Light Sensor Interfacing With PWM Output LED
  • Set up a new project as usual with system clock @ 72MHz
  • Set up An Analog Input Pin (Channel 7) In single Conversion Mode (The LDR Pin)
  • Set up timer2 in PWM mode with output on channel 1 (The LED Pin) 

Here is The Connection Diagram For This LAB

STM32 Project - STM32 LDR Light Sensor Interfacing Project

 


   STM32 ADC Polling Example   

 

In this LAB project, we’ll estimate the ambient light level and set it as a base level and whenever the light intensity gets lower (surrounding darkens) the LED PWM duty cycle increase and the LED gets brighter.

On power-up, the system estimates the nominal or normal ambient light intensity in your room and set it to be the base for further calculations. That’s why you’ve got to make sure that there is light facing the LDR when powering up the system. Recalibration can be achieved by holding the reset button while providing sufficient light facing the sensor surface.

 

And now, let’s build this system step-by-step

 

Step1: Open CubeMX & Create New Project

Step2: Choose The Target MCU & Double-Click Its Name

Step3: Configure The ADC1 Peripheral, Enable Channel7 & Set it to be triggered by software

You’ll actually find that the analog channel has these default configurations which happens to be ok for us in this LAB.

STM32 ADC Example HAL Code And CubeMX Configurations

Step4: Configure Timer2 To Operate In PWM Mode With Output On CH1

STM32 ADC Read Example HAL Code

Step5: Set The RCC External Clock Source

Step6: Go To The Clock Configuration

Step7: Set The System Clock To Be 72MHz

The ADC peripherals will be assigned a default clock of 12MHz that you can optionally increase to a maximum of 14MHz. But we won’t do that in this example.

Step8: Name & Generate The Project Initialization Code For CubeIDE or The IDE You’re Using

 

Here is The Application Code For This LAB (main.c)

Download The STM32 Light Sensor (LDR) Project LAB20

 

The LAB Connections

STM32 Light Sensor Interfacing Project - STM32 Projects And Tutorials

 

The Result For LAB Testing (video)

 


 

Stay tuned for the upcoming tutorials and don’t forget to SHARE these tutorials. And consider SUPPORTING this work to keep publishing free content just like this!

 

Previous Tutorial Previous Tutorial Tutorial 25 Next Tutorial Next Tutorial

 

Share This Page With Your Network!
Join Our +25,000 Newsletter Subscribers!

Stay Updated With All New Content Releases. You Also Get Occasional FREE Coupon Codes For Courses & Other Stuff!

Photo of author
Author
Khaled Magdy
Embedded systems engineer with several years of experience in embedded software and hardware design. I work as an embedded SW engineer in the Automotive & e-Mobility industry. However, I still do Hardware design and SW development for DSP, Control Systems, Robotics, AI/ML, and other fields I'm passionate about.
I love reading, writing, creating projects, and teaching. A reader by day and a writer by night, it's my lifestyle. I believe that the combination of brilliant minds, bold ideas, and a complete disregard for what is possible, can and will change the world! I will be there when it happens, will you?

Leave a Comment