Тёмный

LDR with Arduino - Measure Light Intensity using Photoresistor 

BINARYUPDATES
Подписаться 38 тыс.
Просмотров 161 тыс.
50% 1

Lets learn how to interface LDR with Arduino Uno. We'll first setup the circuit and then write program to measure light intensity. The LDR which is Light-Dependent Resistor changes the resistance value based on intensity of light falling on to it. This change in resistor then can be measured in the form of Lux or illuminance. The LDR or Photoresistor is an Analog Sensor. We'll connect LDR Sensor to A0 Pin on Arduino Uno and use simple analogRead() function to read light intensity (lux) from LDR

Опубликовано:

 

9 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 161   
@47f0
@47f0 2 года назад
Nicely done. Concise and complete, without dragging in a quantum physics lecture about photons and electron hole transport.
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Many thanks!
@emilybeardallonline
@emilybeardallonline 4 года назад
Great tutorial! Thank you for making this simple enough to understand on my first day of using arduino!
@BINARYUPDATES
@BINARYUPDATES 4 года назад
Thank's Ms. Emily for your time to leave a comment. I wish you a good luck to all your upcoming events.
@thearchetype9829
@thearchetype9829 3 года назад
Does you know what's a GAS DISCHARGE LAMP!! And can you make your own LIGHT INTENSITY METER ??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@bobstewart8269
@bobstewart8269 2 года назад
@@thearchetype9829 *Do you know what a gas discharge lamp is?
@layoutroblox13
@layoutroblox13 Год назад
LOVE IT ! THIS INLUEDES ALL THE ACCECORIES THAT I HAD TO MAKE THIS PROJECT thank you for making this video possible for us! thanks!
@BINARYUPDATES
@BINARYUPDATES Год назад
You are so welcome!
@o.o7063
@o.o7063 4 года назад
Thank you so much for the code and all that! by the way: great channel
@thearchetype9829
@thearchetype9829 3 года назад
Does you know what's a GAS DISCHARGE LAMP!! And can you make your own LIGHT INTENSITY METER ??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@handypaul2149
@handypaul2149 3 года назад
you're the best!!! really your tuto help me so much to understand light sensor
@handypaul2149
@handypaul2149 3 года назад
@@thearchetype9829 i will do!!
@manalisagvekar4741
@manalisagvekar4741 Год назад
Thank youu so much...great explanation in simple language!!
@sangarmutusamy9801
@sangarmutusamy9801 3 года назад
Great, simple and very useful.
@thearchetype9829
@thearchetype9829 3 года назад
CAN YOU MAKE YOUR OWN LIGHT INTENSITY METER with CIRCUIT EXPLANATION??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@charleena2319
@charleena2319 3 года назад
Thank you for your super informative video 👌🏽
@thearchetype9829
@thearchetype9829 3 года назад
CAN YOU MAKE YOUR OWN LIGHT INTENSITY METER with CIRCUIT EXPLANATION??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@far-red
@far-red 4 года назад
very clear explanation and very good video, i like your 3 way split video setup...
@BINARYUPDATES
@BINARYUPDATES 4 года назад
Glad you liked it!
@wscreations555
@wscreations555 2 года назад
Great explained ,thank you.
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Glad it was helpful!
@YADA70073
@YADA70073 2 года назад
Great video tutorial, Thanks.
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Glad it was helpful!
@Jaya.M78
@Jaya.M78 3 года назад
Thank you so much!!!!
@diyrobotronics
@diyrobotronics 3 года назад
Great job sir🙏
@maco8799
@maco8799 8 месяцев назад
1st sketch ever! thankyou
@BINARYUPDATES
@BINARYUPDATES 8 месяцев назад
Hi Maco, welcome! And good job, cheers!
@izzylattke9212
@izzylattke9212 2 года назад
Awesome video--thanks.
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Glad you liked it!
@pruthvirajhm
@pruthvirajhm Год назад
Wow that was easy to setup thanks
@BINARYUPDATES
@BINARYUPDATES Год назад
Yes, indeed. You should try connecting LDR with Arduino. It'll be a fun project. Best wishes
@divyachandrala9134
@divyachandrala9134 2 года назад
really great sir, thank you a lot
@BINARYUPDATES
@BINARYUPDATES 2 года назад
You are most welcome Divya
@jacquestres
@jacquestres 2 года назад
Thanks for the informative video! I'm trying to create a way to convert morse code light signals into text but I'm curious on how the photo resistor would be able to decipher and differentiate between dots and dashes. Do you have any advice on how to proceed?
@Old_SDC
@Old_SDC 2 года назад
I’m not entirely sure but you could try somehow reading a 0.5 second blink as a . And a 1 second blink as a - or use your own timings, whatever makes most sense to you
@47f0
@47f0 2 года назад
Far easier to generate Morse Code. Reading it gets messy. I'd use the millis() function (Arduino milliseconds since boot) sit in a while() loop waiting for the signal to go high. Grab the millis() and sit in another while loop waiting for the signal to go low. Grab the millis() again and subtract the starting millis() to get the pulse duration. This millis() stamp also begins the space. repeating this process lets you build up an array of pulse and space times. the following rules may help you sort out the difference between pulses individual letters and words, but the timings are pretty variable, especially with human generated code, so you're going to have to be a bit clever with your math. once you think you have a bunch of letters, decoding it is just a matter of referencing a table of type byte, with each letter represented as binary digits. The length of a dot is 1 time unit. A dash is 3 time units. The space between symbols (dots and dashes) of the same letter is 1 time unit. The space between letters is 3 time units. The space between words is 7 time units.
@chillwavefrequency8108
@chillwavefrequency8108 3 года назад
Thank you very much for this video. I need to make a DIY CT Scanner and I am planning on using these. Could you make a video for the code for getting the reading of multiple resistors at a time please? Also, What's the difference between these photoresistors and the Gowoop photosensitive resistance sensors?
@thearchetype9829
@thearchetype9829 3 года назад
CAN YOU MAKE YOUR OWN LIGHT INTENSITY METER with CIRCUIT EXPLANATION??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@robboss4036
@robboss4036 4 года назад
Is it possible to make a code in arduino that sends your computer to a URL?
@thearchetype9829
@thearchetype9829 3 года назад
Does you know what's a GAS DISCHARGE LAMP!! And can you make your own LIGHT INTENSITY METER ??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@khaleeqahmad6316
@khaleeqahmad6316 3 года назад
Arduino Uno- Serial Monitor is showing up like 200 or 217 . Is this 200 or 217 in light unit Lux ?
@Pr3s3nt3r123
@Pr3s3nt3r123 3 года назад
guess this is late, but its only a number from 0 to 1023, no unit. It doesnt give you any unit, its just a value which is given based on the resistance the LDR is at the current light level (Not the resistance in ohms either).
@understandeveryonelearneve2708
@understandeveryonelearneve2708 2 года назад
Nice video sir. i like it. make it sir much more videos that can will study it.
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Hi Devadatta, I will keep adding more videos around Arduino and Raspberry Pi related topics in days to come. Thanks for your nice words concerning video lessons. It means a lot. Thanks
@nishanthak2451
@nishanthak2451 2 года назад
Good, Thank u
@smartronics4284
@smartronics4284 4 года назад
Cool!
@gauravagarwal8243
@gauravagarwal8243 Год назад
Hi, I wanted to build a small box wherein light would fall on a piece of paper and the sensor should calculate the area of the paper which is blocking the light?? Is it possible??
@BINARYUPDATES
@BINARYUPDATES Год назад
Hi Gaurav, it is possible
@gauravagarwal8243
@gauravagarwal8243 Год назад
@@BINARYUPDATES Hi thanks for the response. Can you guide me how this can be done I am in need of the same for school project. If you want we can discuss this on email or anywhere else suitable Thanks.
@wareexplained
@wareexplained Год назад
really simplified
@Peterkringle
@Peterkringle 3 года назад
Awesome video, thanks so much. Would you mind adding the LDR used and the resistor used to your description? Thanks again!
@Peterkringle
@Peterkringle 3 года назад
I see you say 1 kOhm in the video (it's labelled as well).
@thearchetype9829
@thearchetype9829 3 года назад
Does you know what's a GAS DISCHARGE LAMP!! And can you make your own LIGHT INTENSITY METER ??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@katianuriu7506
@katianuriu7506 5 месяцев назад
Is a breadboard that big necessary ,can it work with a smaller one too?
@BINARYUPDATES
@BINARYUPDATES 5 месяцев назад
Hi Katianuriu, Yes it will work with smaller breadboard as well. Just setup LDR circuit with Arduino on available tie points on small breadboard. Good luck and best wishes!
@_aurum
@_aurum 3 года назад
thank you
@angelolunardelli6805
@angelolunardelli6805 3 года назад
this out values, are they in some unity of mesurement? like lux, or lumens
@arunraj2183
@arunraj2183 3 года назад
He doesn't know himself :D
@BINARYUPDATES
@BINARYUPDATES 3 года назад
Usually light intensity is measured in lux Since LDR is light dependent resistor we read change in resistance through ADC counts on Analog Pin of an Microcontroller. The circuit we use in this project create voltage divider arrangement to let us measure change in voltage when light falling on sensor changes. I hope you get now. Good luck
@ImadKhan-jc1pk
@ImadKhan-jc1pk 3 года назад
Can you please paste the link for complete project?
@ExploreEight
@ExploreEight 3 месяца назад
good one
@lahcieneyoucef7025
@lahcieneyoucef7025 2 года назад
Thank you bro ❤️
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Welcome Bro😊
@elguenfo8784
@elguenfo8784 Год назад
I'm terrible at electronics I use the esp8266 microcontroller and I'm getting values from 20 to 50 although I did the same wiring ???
@BINARYUPDATES
@BINARYUPDATES Год назад
The value for LDR may vary as ESP8266 runs on 3.3V and Arduino runs on 5V. The other important thig contribute to accuracy of data based on value of resistor you've used with LDR Sensor. I hope this information may help you. Wish you good luck and best wishes!
@elguenfo8784
@elguenfo8784 Год назад
@@BINARYUPDATES thanks for the help
@OregonDARRYL
@OregonDARRYL 2 года назад
You can make the value go up instead of down by reversing the voltage polarity through the LDR and resistor.
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Yes, its possible
@47f0
@47f0 2 года назад
I think at least one of the three-pin modules with the resistor built-in actually shows a pin out diagram wired this way. As far as I can tell, either way works, just be sure you know what you're expecting.
@chrishadjipetris6059
@chrishadjipetris6059 8 месяцев назад
I tried something similar with temperature, and my experience says that you need some error to avoid oscillations between on and off state. What I mean, is that you better set two values close to 100, one lower value for on and one higher for off. Let's say the two values are 99 and 101, you want the led to be on when the intensity is 99 or lower, and you want it to be off when intensity is 101 or higher. In case of any values between 99 and 101, the led maintains its previous state
@BINARYUPDATES
@BINARYUPDATES 8 месяцев назад
Hi Chris, thank you very much for your suggestions. Next time when I'll write arduino code wherein LDR data will be checked for lower threshold as well. Have a beautiful day!
@xpiredmemes3739
@xpiredmemes3739 8 месяцев назад
Hi, great video but could you explain to me what the resistor going to the ground is for? I'm very new to arduinos and circuitry. Thanks!
@BINARYUPDATES
@BINARYUPDATES 6 месяцев назад
Hi, you can use resistor of value 10K with LDR Light dependent resistor. Its standard across all input of 5V DV devices. Just like Arduino Uno which also operate on 5V DC. I hope this may help answer your question. Good luck and best wishes!
@omaramin3600
@omaramin3600 Год назад
if i add 1 more ldr and what do you add to the code
@BINARYUPDATES
@BINARYUPDATES Год назад
Hi Omar, you can add other LDR to A1 Pin which is analog sensor. So we'll declare new variable to store light intensity of second LDR using analogRead(A1) function. I hope this may help. Best wishes and good luck!
@danmoore7708
@danmoore7708 4 года назад
What LDR are you using, can you send a link please
@thearchetype9829
@thearchetype9829 3 года назад
CAN YOU MAKE YOUR OWN LIGHT INTENSITY METER with CIRCUIT EXPLANATION??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@anghuyphamnguyen3096
@anghuyphamnguyen3096 2 года назад
For some reason my LDR only works like a resistor, even if I try to move it to brighter space or cover it I try replace the LDR with a resistor and I can tell that the variable are completely the same so it is kinda working I used both of my LDR, the main one and the spare one and both aren't working You have any ideas?
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Hi, you need only one LDR for this project and other would be a normal resistor of value around 10K to form voltage divider circuit to measure the light intensity in lux which is an result of equivalent ADC counts from microcontroller on arduino uno. Usually, the two reason this may not work, One is wrong connections and other one is power make sure your arduino boards GND and 5V pin provide enough power to functions voltage divider circuit. I hope this may help you. Wish you beautiful day. Thanks
@virendersingh6027
@virendersingh6027 2 года назад
Dear sir, LDR and Arduino board is ok but there is no change in the value on serial monitor. I have also connect LED in digital pin 13 but not glowing on covering LDR. Can you please help me?
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Hi Virendra, please make sure LDR and Resistor connected properly to form voltage divider circuit. The value of lux or LDR data depends on what value of resistor you've connected across LDR while connecting to A0 pin on Arduino Uno. Best wishes and good luck!
@emmamasip4640
@emmamasip4640 3 года назад
THAAAAAAAAANK YOUUU
@BINARYUPDATES
@BINARYUPDATES 3 года назад
My Pleasure Emma!
@adysfakis2977
@adysfakis2977 3 года назад
Hello, please how can I set it to high sensitivity? I mean how can I do that In series window would be for example 6 numerie numbers?
@BINARYUPDATES
@BINARYUPDATES 3 года назад
Hi Adys, to achieve more resolution you need ADC with high resolution. In Arduino, ADCs are 10-bit means the output will be between 0-1024.
@puvikiruthik151
@puvikiruthik151 3 года назад
Thanks
@reinalto
@reinalto 2 года назад
Thank you for the video sir. May I ask why are you using the 1kOhms resistor specifically?
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Hi Reinalto, that 10K resistor connected with LDR circuit form voltage divider circuit which generate variable voltage. This variable voltage we measure using Arduino Microcontroller. And later on this voltage itself will interpret as a light intensity or lux value. I hope this help you. Good luck and best wishes!
@reinalto
@reinalto 2 года назад
@@BINARYUPDATES this definitely help. I was using a 2k and it's not working properly, now with the 10k resistor everything is working just fine. Again, thank you for the video and keeping the good work! You're blessed!
@kateanne5163
@kateanne5163 3 года назад
could i use the 3.3V or would that not work
@BINARYUPDATES
@BINARYUPDATES 3 года назад
Yes Kate you can use 3.3V as VCC as a reference voltage with LDR Light Dependent Resistor
@vamshilalnaik264
@vamshilalnaik264 Месяц назад
7:17 In which units the LDR sensor gives the output. In serial monitor
@BINARYUPDATES
@BINARYUPDATES Месяц назад
Hi Vamshil, the values getting on serial monitor is the equivalent of change in resistor because in the end LDR is resistor whose resistance changes as light falling on its surface changes. Usually, we need to convert this value into lux because light intensity is measured in lux. I hope this help you understand LDR's functioning. Good luck and best wishes!
@pulithawanniarachchi7991
@pulithawanniarachchi7991 4 года назад
Bro what is the units of output lightning intensity? Is it LUX or not?
@BINARYUPDATES
@BINARYUPDATES 4 года назад
Hi Pulitha, the light intensity from LDR can be measured in Lux: The "lux" which is the SI unit of illuminance, measuring luminous flux per unit area.
@thearchetype9829
@thearchetype9829 3 года назад
CAN YOU MAKE YOUR OWN LIGHT INTENSITY METER with CIRCUIT EXPLANATION??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@amiosyt2711
@amiosyt2711 2 года назад
Is the A0 input or output
@BINARYUPDATES
@BINARYUPDATES 2 года назад
A0 on Arduino is an Analog Input Pin can be used to read any analog sesnor. As in this case we used LDR light dependent resistor
@samdelaney6383
@samdelaney6383 2 года назад
so i uploaded it but it stays at 0. Any reason for that???
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Hi Sam, please do check your connection between LDR and Arduino. Sometimes its possible because of bad connections you won't get to see data....
@beaconing7689
@beaconing7689 3 года назад
so how do we make FreeRTOS LDR sensor with seperated task ? like make on and off led in seperated task, i still can't do it 😩
@BINARYUPDATES
@BINARYUPDATES 3 года назад
You need to use FreeRTOS Library in Arduino Code. And create independent task for turning LED ON/OFF. Not sure your objective because you can achieve simple LDR interface without FreeRTOS. I recommend use millis() function instead
@hasnainshahid7819
@hasnainshahid7819 Год назад
i found error: system show this message. 'serial' was not declared in this scope
@BINARYUPDATES
@BINARYUPDATES Год назад
Hi Hasnain, It seems like your Arduino Code has issue. You have to write "S" capital in Serial. I hope this may help. Good luck!
@akshayingle6061
@akshayingle6061 4 года назад
hey hello I had a question, can we measure wavelength of a particular led using the intensity of light measured by ldr?
@LUCABALUCA
@LUCABALUCA 4 года назад
my suggestion would be using a low and high pass filter. if you want to be approximate some colored plastic might do the trick!
@akshayingle6061
@akshayingle6061 4 года назад
@@LUCABALUCA but how to.measure wavelength will it give direct value?
@LUCABALUCA
@LUCABALUCA 4 года назад
Technical Engineer ah to measure a wavelength scientists use light spectrometers. To my knowledge they use filters to measure at each wavelength and then look at the graph ti figure ou which wl it emits at
@thearchetype9829
@thearchetype9829 3 года назад
CAN YOU MAKE YOUR OWN LIGHT INTENSITY METER with CIRCUIT EXPLANATION??? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JTcircQha3A.html Go find out
@arthurp.2779
@arthurp.2779 3 года назад
What colours does the resistor have?
@BINARYUPDATES
@BINARYUPDATES 3 года назад
Not sure about color code since its very old method to recognise value of resistor. I use multi meter to measure value. Usually with LDR Light Dependent Resistor you can consider using resistor with value between 1k-10k Ohm. I use 10K Ohm for optimal performance to get accurate value of LUX from LDR Sensor
@prov_s195
@prov_s195 3 года назад
instead of putting the wire at 5V, can I put it at VIN?
@BINARYUPDATES
@BINARYUPDATES 3 года назад
No VIN pin on Arduino Uno is to give input voltage to Arduino. Not to take from arduino to supply 5V to other devices like sensors, displays, motors etc.
@prov_s195
@prov_s195 3 года назад
@@BINARYUPDATES ok
@omerfanar8614
@omerfanar8614 8 месяцев назад
Thanks for this nice explain But i would if someone please tell me applications for ldr sensor matrix 6×6 or 6×5 Because I have a project for college and i little confused how can I deal with that... And thank you so much
@BINARYUPDATES
@BINARYUPDATES 8 месяцев назад
Hi Omer, thanks! I think you can consider using LDR sensor to measure light intensity of surrounding and then take two or three 6x6 dot matrix display connect them together and show light intensity which means lux value on display. This could be one simple application to show in college. Also, you change the brightness of Dot Matrix display based on value of Light Dependent Resistor. I hope this may find useful. Good luck and best wishes for your project!
@omerfanar8614
@omerfanar8614 8 месяцев назад
@@BINARYUPDATES thank you so much for your help , can I contact you in another your email , what's up or telegram? And thank you again ❤️❤️❤️
@Curtismunch
@Curtismunch Год назад
will this work with an arduino uno?
@BINARYUPDATES
@BINARYUPDATES Год назад
Yes, as per video. I've shown the same. The LDR to interface with Arduino to measure light intensity in surrounding.
@yourname9706
@yourname9706 3 года назад
mine jump from 300 to 700 and back to 300.. and if I block the light it jump from 0 to 1023 and back to 0... why?
@BINARYUPDATES
@BINARYUPDATES 3 года назад
I believe it maybe because LDR connections will be loose on breadboard. Please confirm once and give it try once more
@erwinconxepts
@erwinconxepts 2 года назад
how many ohms is your resistor used?
@BINARYUPDATES
@BINARYUPDATES 2 года назад
I've used 1K ohm but you can use any resistor value between 1K to 10K while interfacing LDR with Arduino. Good luck!
@Miss_BlahBlahh
@Miss_BlahBlahh 3 года назад
How we can obtain the graph of the same
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Hi Vishaka the easisest way is to use Arduino Serial Plotter in Arduino IDE under Tools menu. I hope this may help you. Wish you good day, thanks!
@TheBettyswetty
@TheBettyswetty 3 года назад
Why my LED has a very low intensity? Any idea?
@BINARYUPDATES
@BINARYUPDATES 3 года назад
Hi Beatrice, LED brightness depends on specification of an LED. If in case you've same LED then maybe your Arduino is not providing enough power to LED. And i consider you've not connected any current limiting resistor before LED. Usually resistor before LED used to control the current flowing through LED which in result control brightness of an LED. I hope this may help you. Good luck, best wishes
@nandhunandhu6452
@nandhunandhu6452 2 года назад
What is the ohm value of resistor?
@BINARYUPDATES
@BINARYUPDATES 2 года назад
You can use 10K Ohm resistor with LDR Light dependent resistor to form voltage divider circuit with Arduino Uno Pins. Best Wishes Team BINARYUPDATES
@azridaniel6009
@azridaniel6009 2 года назад
Can i replace arduino uno with raspberry pi with same cooding?
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Hi Azri, unfortunately Raspberry Pi don't have any analog pin on board. So you need to connect external ADC converter chip to interface LDR with Raspberry Pi.
@azridaniel6009
@azridaniel6009 2 года назад
@@BINARYUPDATES okay thanks for your response. I will use Arduino. Actually my project same like this, I was planed want to use LCD 1602 to view my result. What step I need to do to to get output on LCD?
@talitaadzra7341
@talitaadzra7341 7 месяцев назад
How to insert this to lcd?
@BINARYUPDATES
@BINARYUPDATES 6 месяцев назад
Hi, you can interface Character LCD in 4-bit mode or use OLED display with I2C protocol. This will let you show light intensity value LUX from LDR on LCD screen. I have video posted in Arduino playlist on how to interface LCD Display with Arduino. I hope, you may find that tutorial useful. Good luck and best wishes!
@Zer0.2903
@Zer0.2903 Год назад
can you please give me circuit diagram
@_inspireverse___
@_inspireverse___ 3 года назад
Why did you use pin 13 in code? Also you didn't connected any wire with pin no. 13.
@subspace666
@subspace666 3 года назад
the yellow onboard led on the arduino is connected to pin 13 internally
@srgplay4526
@srgplay4526 Год назад
Sir why are we using the resistor here?
@BINARYUPDATES
@BINARYUPDATES Год назад
Hi SRG, it forms voltage divider circuit which help you measure change in output voltage because of change in resistance across LDR. I hope this may help. Best wishes!
@srgplay4526
@srgplay4526 Год назад
@@BINARYUPDATES Thank you Sir
@virendersingh6027
@virendersingh6027 2 года назад
Sir, please make a video with ws2812 rgb led strip, LDR and arduino with code please. Please reply
@BINARYUPDATES
@BINARYUPDATES 2 года назад
Hi Virender, I'll soon make video to show how to interface and program Arduino Uno with WS2812 RGB LED Strip. Thanks and have a goo day
@bgable7707
@bgable7707 2 года назад
Please "pin" the components used in your configuration, ie, what is the size of the LDR used with your 1K resistor
@BINARYUPDATES
@BINARYUPDATES 2 года назад
The LDR used in video lesson is very commonly used LDR. One can find in any online store these days even on amazon
@47f0
@47f0 2 года назад
The photo resistor is pretty standard, there are usually one or two included in most of the beginner kits for Arduino or elegoo. But I would double check the resistor value. The photo resistor modules I've seen, where the resistor is built on a little 3-pin board, use 10K resistors.
@kchoudri
@kchoudri 3 года назад
you placed that breadboard wrong.. its slightly up
@sofianeaissou3661
@sofianeaissou3661 4 месяца назад
what is 200 that is showing? 200 what?
@BINARYUPDATES
@BINARYUPDATES 4 месяца назад
Its a value of ADC counts which will vary based on amount of light falling on the surface of LDR Sensor. So later we can calculate Lux or illuminance
@sofianeaissou3661
@sofianeaissou3661 4 месяца назад
how can we use it to calculate lux please?@@BINARYUPDATES
@randomstuff3425
@randomstuff3425 2 года назад
Hi
@sayalikhose4302
@sayalikhose4302 2 года назад
Plz send the code
@BINARYUPDATES
@BINARYUPDATES 2 года назад
The LDR and Arduino Code is simple you can pause video for a moment and type. Good luck!
@mr_sir_007
@mr_sir_007 3 года назад
you don't have to sport a foreign accent... be whatever you are. btw, great tutorial.
@ErikThiart
@ErikThiart 3 года назад
That is not lux.
@alexanderowen461
@alexanderowen461 2 года назад
Then what is it?
@budalasreenidhi8242
@budalasreenidhi8242 2 года назад
thank you
Далее
LDR Sensor & Arduino using Tinkercad
8:12
Просмотров 18 тыс.
HC-05 Bluetooth Module with Arduino-MIT App Inventor
27:57
Level Up Your Arduino Code: Timer Interrupts
17:22
Просмотров 227 тыс.
LED Control with LDR (Photoresistor) and Arduino
4:22
Просмотров 423 тыс.
Connecting a Relay Module to a Microcontroller
11:41
Просмотров 218 тыс.