LED Control with LDR (Photoresistor) and Arduino

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 232

  • @maker101io
    @maker101io  3 ปีที่แล้ว +3

    Source Code: create.arduino.cc/editor/mertarduinotech/40f2d22f-7853-4882-b2a9-1b6d43ac81b0/preview
    Recommended Items:
    Use Your Muscles in Project - amzn.to/3wdL45C​
    37 Sensor & Module Packages - amzn.to/3m66WeQ​
    Try this Robot Arm - amzn.to/3fq8DCl​
    Best Resin 3D Printer - amzn.to/39tY8KB​
    Arduino Compatible Kits - bit.ly/2J2AFF7​
    Banggood Spring Sale - bit.ly/3slMbOn

    • @chrisjude9933
      @chrisjude9933 3 ปีที่แล้ว

      Sorry to be off topic but does any of you know a method to get back into an Instagram account?
      I was dumb forgot my password. I love any tips you can offer me.

    • @edisonanthony1098
      @edisonanthony1098 3 ปีที่แล้ว

      @Chris Jude Instablaster ;)

    • @chrisjude9933
      @chrisjude9933 3 ปีที่แล้ว

      @Edison Anthony i really appreciate your reply. I found the site through google and I'm in the hacking process atm.
      Seems to take a while so I will reply here later when my account password hopefully is recovered.

    • @chrisjude9933
      @chrisjude9933 3 ปีที่แล้ว

      @Edison Anthony it worked and I now got access to my account again. Im so happy:D
      Thank you so much you saved my account !

    • @edisonanthony1098
      @edisonanthony1098 3 ปีที่แล้ว

      @Chris Jude happy to help :D

  • @anatoos
    @anatoos 5 ปีที่แล้ว +25

    For those like me who have had trouble making this work, this might be because your LDR is calibrated differently from the one in the video. To fix this issue, try replacing the "300" with other values until it works.

    • @Leonb66
      @Leonb66 3 ปีที่แล้ว +2

      had to adjust my ldr status to

  • @dmatter1423
    @dmatter1423 2 ปีที่แล้ว +1

    I've been doing a project in design school that needs this exact circuit and I haven't been able to figure it out! Thank you so much!!

  • @owenonuorah1291
    @owenonuorah1291 8 วันที่ผ่านมา

    For those that are having troubles due to constant readings, try going to a brighter environment or try to lower the LDR status, eg, LDR status

  • @nathysathorn
    @nathysathorn ปีที่แล้ว +1

    Great video, if your light sensor is still not working. Try changing your ‘ if ‘ statement. As 300 is working here it doesn’t always work for everyone. Mine was 5

  • @soteropolitano3413
    @soteropolitano3413 3 ปีที่แล้ว +1

    Muito show... Explicou em 4 minutos um conteúdo grande com riqueza de detalhes...
    O Brasil estaria em outro nível se a maioria dos professores tivessem esse dom na didática.

  • @ochijunior1252
    @ochijunior1252 2 ปีที่แล้ว

    The best ldr tutorial that will ever be

  • @anbolaq447
    @anbolaq447 4 ปีที่แล้ว +5

    Would you mind explaining why we have to use 10k ohm resister with the LDR.

  • @KD9Sa
    @KD9Sa 3 ปีที่แล้ว +1

    The instructions and steps are organized and clear.
    The video quality is perfect.
    Thanks very much for sharing your knowledge with us.

  • @_atomic3187
    @_atomic3187 5 ปีที่แล้ว +8

    You are my hero, i can sleep this night, ty bro

    • @vuk_ustipak
      @vuk_ustipak 4 ปีที่แล้ว +3

      You can now sleep you dont have an led shining in ur eye

  • @reefmaster
    @reefmaster 5 ปีที่แล้ว

    clear guide on writing code. Comments in code section helped a lot.

  • @rakhusial3124
    @rakhusial3124 3 ปีที่แล้ว +1

    Sir I am big fan of all of your projects kindly make GPS land leveling with arduino...

  • @tylerarnold7526
    @tylerarnold7526 6 ปีที่แล้ว +1

    Helped me in my college engineering course!!! Thank you

  • @karthiuthay2607
    @karthiuthay2607 ปีที่แล้ว

    this is the right way to make LDR photoresistors.

  • @TheMystery963.
    @TheMystery963. 5 ปีที่แล้ว +2

    source code=
    //set pin numbers
    //const won't change
    const int ledPin = 13; //the number of the LED pin
    const int ldrPin = A0; //the number of the LDR pin

    void setup() {
    Serial.begin(9600);
    pinMode(ledPin, OUTPUT); //initialize the LED pin as an output
    pinMode(ldrPin, INPUT); //initialize the LDR pin as an input
    }
    void loop() {
    int ldrStatus = analogRead(ldrPin); //read the status of the LDR value
    //check if the LDR status is

  • @uliseslazaro1766
    @uliseslazaro1766 6 ปีที่แล้ว +2

    Hi, why do we need the 10k resistor?

  • @kohchajie9701
    @kohchajie9701 5 ปีที่แล้ว +2

    hello, i have a question regarding the resistance value.
    why 10kohm and 220ohm is chosen instead of others value?
    is there a reason for these? if yes, are they any formula to prove so?
    looking forward for your reply.

    • @JohnnyFaber
      @JohnnyFaber ปีที่แล้ว

      Ohm's law. The resistor for the led controls the current and is there to kerp the led operating within it's operational parameters.

  • @caseylocke4474
    @caseylocke4474 6 ปีที่แล้ว +6

    I have watched EVERY SINGLE photoresistor & arduino video on TH-cam up through the first 30 results. Not only have I not found a SINGLE video that explains the need for the fixed resistor (what they are calling a "voltage divider," but at least one person in every video asks that question in the comments section and never gets an answer. I am extremely frustrated because I cannot find this information ANYWHERE. Why can't you just connect one leg of the photoresistor to +5V and the other leg to A0 and measure the output voltage (and therefore light level) directly?

    • @hesamakbari4314
      @hesamakbari4314 5 ปีที่แล้ว +1

      dude resistors don't change voltage, they change the current and with the fact that LDR is a resistor, you can't do that. that is why you will need a voltage divider circuit

    • @hesamakbari4314
      @hesamakbari4314 5 ปีที่แล้ว

      I made a video on this. you can go and check it and please subscribe

    • @aditydud
      @aditydud 5 ปีที่แล้ว

      @@hesamakbari4314 can you please share a link

    • @hesamakbari4314
      @hesamakbari4314 5 ปีที่แล้ว

      @@aditydud yes sure

    • @hesamakbari4314
      @hesamakbari4314 5 ปีที่แล้ว +1

      @@aditydud but unfortunately I deleted the video but I'm going to repost it in 2 days

  • @fadhilhashim
    @fadhilhashim 5 ปีที่แล้ว

    The code is so simple. That is help me to understand how it work!

  • @didemeczanesi6312
    @didemeczanesi6312 6 ปีที่แล้ว +1

    Ithınk You are the best youtuber

  • @mustafaglnr8780
    @mustafaglnr8780 7 ปีที่แล้ว

    Why did you choose 300 for working rate of LDR?
    Tell some info about the working principle on Arduino codes?
    why did you plug a cable in A0 pin?
    Say sth. about the LDR and Resistor section over board.

  • @gulsunyazsoydan4372
    @gulsunyazsoydan4372 ปีที่แล้ว +1

    I wish I was the arduino console you were typing to

  • @lassekluth8279
    @lassekluth8279 4 ปีที่แล้ว +2

    thank you, thats the solution for my projeckt

  • @SengerMF
    @SengerMF 7 ปีที่แล้ว

    And to use 2 LEDs? Each one with its sensor? How would the scheme look? Thank you very much in advance!

    • @cinhuu
      @cinhuu 7 ปีที่แล้ว

      And to turn off LED when it's dark and turn on when have light, what i need to do?

  • @karthiuthay2607
    @karthiuthay2607 ปีที่แล้ว +1

    Attach wires to short legs!

  • @samtharachan6796
    @samtharachan6796 4 ปีที่แล้ว

    I followed your exact sketch and cross checked the connections. I can't find out the problem. When I check the serial monitor, all I see are senseless symbols. Please help

  • @wellnessstudioevexia
    @wellnessstudioevexia 7 ปีที่แล้ว

    you are awesome.can you connect the led strip with this method?

  • @kautron
    @kautron 5 ปีที่แล้ว

    Thank you very much for this project. Could you put a video that when the ldr does not detect light, and the sound detection detects sound, then the led lights up. But if the ldr detects light,
    and the sound detection sensor detects sound, then the led does not light up.

  • @rahimahjofferi3560
    @rahimahjofferi3560 7 ปีที่แล้ว

    Its a great and helpful tutorial, thank you! but what if I want to add 13 more 4.5 lumens of LEDs to the construction to make it brighter? Do you mind helping me how the construction is going to be like? For eg. how many more resistors do I need to add and what are the values for each resistor? Your help and response would be more appreciated!

  • @ЮлианДимитров-ъ2ш
    @ЮлианДимитров-ъ2ш 6 ปีที่แล้ว

    1:27 the resistor is between the lrd and the wires and in 3:58 the resistor is after the ldr. Why?

  • @mitsuhatohrusoma5360
    @mitsuhatohrusoma5360 7 ปีที่แล้ว

    Hi. I just found about this amazing video po of yours. Can I ask po why is it 300? The reason I ask is, the first time I run the program using ldr, the monitor prints.. 1023.. what is the difference between putting 300 and 1023 in the condition? sorry for the disturbance sir.

  • @wilbertortilla9233
    @wilbertortilla9233 7 ปีที่แล้ว +7

    why my led is always on even it its not dark? answer m pls

  • @RohitKumar-iu3cd
    @RohitKumar-iu3cd 6 ปีที่แล้ว

    I have copied the whole program carefully but contunuesley error is coming that 'AO was not decleared in this scope' please reply me out and help me

  • @rodalynpenaranda9539
    @rodalynpenaranda9539 7 ปีที่แล้ว

    Hi. What if I attach about 8 LEDs? I don't know how to program it anymore. Can you help me with it?

  • @hasrettv6904
    @hasrettv6904 6 ปีที่แล้ว

    Selam hocam elinize sağlık çok güzel ancak birde bunun tersini yapmanız mümkünmü aceba işıgi görünce yanacak karanlıkta sönecek

  • @dilawarali5390
    @dilawarali5390 4 ปีที่แล้ว

    LDRStatus is the voltage or resistance of LDR?? kindly help me

  • @awinoebbie701
    @awinoebbie701 3 ปีที่แล้ว

    thanks for this it worked like a charm

  • @molandap3041
    @molandap3041 2 ปีที่แล้ว

    why we use 10k resistor on ldr?

  • @achrafmixmix
    @achrafmixmix 7 ปีที่แล้ว

    is there any diffrence btw programming an arduino uno & Leronardo !cuz i wanna try the same thing but with the leanardo arduino ! & why do we need an arduino to do this in the first place .. ?

  • @arbaaz07
    @arbaaz07 4 ปีที่แล้ว

    What do I add to the code if I want it to blink while not being covered?

  • @ravenborda6712
    @ravenborda6712 7 ปีที่แล้ว

    How can i combine this with a button? i already have an if function but when the button is pressed then the ldr does not work... thanks

  • @antoinesfeir4769
    @antoinesfeir4769 ปีที่แล้ว

    My LDR status just keeps returning 0. Would be from my wiring?

  • @mirosorduno1796
    @mirosorduno1796 7 ปีที่แล้ว

    Does it also works if I use an Arduino Leonardo instead of Arduino UNO?

  • @prashantgunjal5566
    @prashantgunjal5566 4 ปีที่แล้ว +1

    bro u hve very cool videos suoerb videos just make yourself audible to make it extra cool

  • @Jevinrandhawa
    @Jevinrandhawa 7 ปีที่แล้ว

    I have an ldr sensor board, can I still do this?

  • @dhyanasaiyelamanchili4495
    @dhyanasaiyelamanchili4495 5 ปีที่แล้ว

    Could you please make a video of how to make the LED turn on when there is light and turn it off when the LDR detects darkness?

    • @GinnHardcore
      @GinnHardcore 5 ปีที่แล้ว

      Lol switch the of statement

  • @yogabayuangganapratama
    @yogabayuangganapratama 5 ปีที่แล้ว +1

    nice video. thanks for the tutorial

  • @likithagowda7813
    @likithagowda7813 4 ปีที่แล้ว

    Sir can we light 2 LEDs?
    If yes then the connection should be series or parallel?

    • @rb0317
      @rb0317 2 ปีที่แล้ว

      Mine worked in parallel

  • @mohamedlhachimi2933
    @mohamedlhachimi2933 3 ปีที่แล้ว +1

    my ldr have black lines but all the world have ldr with red lines

  • @swarajprojects78
    @swarajprojects78 7 ปีที่แล้ว

    what is LDR

  • @ManharArt
    @ManharArt 6 ปีที่แล้ว +4

    Please give circuit diagram

  • @greenchilley5616
    @greenchilley5616 4 ปีที่แล้ว

    Hi, is it possible to dim an RBG LED with a photoresistor on Arduino?
    thanks

  • @UcanKanatsizPenguen
    @UcanKanatsizPenguen 4 ปีที่แล้ว

    will it explode if a use 330 r instead?

  • @AbhaySingh-wi3op
    @AbhaySingh-wi3op 6 ปีที่แล้ว

    Can we put 100 k resister

  • @guneshgupta
    @guneshgupta 6 ปีที่แล้ว

    Which video making software do you use

  • @CrazyCoupleDIY
    @CrazyCoupleDIY 6 ปีที่แล้ว

    Thanks mate, really helpful

  • @djmcg83
    @djmcg83 4 ปีที่แล้ว

    Could You add schematic of connections.

  • @MAMPIism
    @MAMPIism 6 ปีที่แล้ว

    Can we use 470 and 1k ohm resistors instead of the ones mentioned

  • @dipl.-psych.alfonskaseberg1768
    @dipl.-psych.alfonskaseberg1768 4 ปีที่แล้ว

    Awesome, it worked!!!
    If i could understand what I'm writing down, that would be awesome. :D

  • @PriyankaMC-cn7vp
    @PriyankaMC-cn7vp ปีที่แล้ว

    For this how to connect PIR sensor

  • @oleksiylevenets8957
    @oleksiylevenets8957 6 ปีที่แล้ว

    а як зробити коли світло - показує зеленим, а коли темно - червоним?

  • @koshakprontix5821
    @koshakprontix5821 5 ปีที่แล้ว +1

    my led is always off for some reason. do you know why?

    • @neoline5831
      @neoline5831 5 ปีที่แล้ว

      sometimes its Always off but i fixed it by removing all components and reassembling them , then re upload the code

    • @frolicswithyajat4057
      @frolicswithyajat4057 4 ปีที่แล้ว

      Same but a bit glown

  • @MiRRoR220
    @MiRRoR220 4 ปีที่แล้ว

    Can anyone tell my why there has to be a resistor after the photoresistor and the wire to ground? Cant the power just go into analog in?

  • @youssefkhaled6598
    @youssefkhaled6598 6 ปีที่แล้ว

    can it work with switch case

  • @GinnHardcore
    @GinnHardcore 5 ปีที่แล้ว

    Can I put a transformer one end and a 2.9 billions ohm resistor with a 2 hydra jumper cables.... some of these comments are awesome

  • @xPureStreakz
    @xPureStreakz 6 ปีที่แล้ว

    Question: I noticed the rate at which the serial port was displaying the output was pretty quick. Can this rate of reading the LDR values be increased with a higher baud rate?

    • @paulraymond1804
      @paulraymond1804 5 ปีที่แล้ว

      I don't think so. But why would you want it to display quicker than that? The reading doesn't need to be any where near that fast for a working project anyway.
      I will be building this to control the lights around my building every day, and it will read the light levels just once per minute, and only turn the lights on if the light level has been below the threshold for the last five or ten minutes. Likewise with turning the lights off.

  • @Deb22
    @Deb22 6 ปีที่แล้ว

    i think you should add buzzer to it

  • @ameshisithumini6170
    @ameshisithumini6170 5 ปีที่แล้ว

    this video was really helpful!!!!

  • @paraskhosla9622
    @paraskhosla9622 4 ปีที่แล้ว

    how to fade rgb led with ldr not on and off just fade?

  • @tiagoabreu3488
    @tiagoabreu3488 5 ปีที่แล้ว +1

    what's the meaning of the 300?

    • @neoline5831
      @neoline5831 5 ปีที่แล้ว

      the meaning of the three hundred is the value of light that the LDR needs to turn led on, if u want it to be more sensitive u just decrease the values

  • @michellemurray3245
    @michellemurray3245 7 ปีที่แล้ว

    We tried and the LED did not light up but gave the line Serial.println. Then I changed the ldr status to 1023 and the LED stayed on. Any thoughts as to why?

  • @mohammadmoinuddinansari8462
    @mohammadmoinuddinansari8462 6 ปีที่แล้ว

    From where all these components can be purchased ,.

  • @gtarpclips-cortes
    @gtarpclips-cortes 5 ปีที่แล้ว

    how can I do to turn on more led's?

  • @edwincontreras7457
    @edwincontreras7457 7 ปีที่แล้ว

    uh, I think i made something wrong but, I have no idea what it is. Pls help (I'm trying to control two LEDs at the same time)
    //set pin numbers
    //constant won't change
    const int ledPin = 13;//the number of the LED pin
    const int ledPin_2 = 10; // the number of the second LED pin
    const int ldrPin = A0; //the number of the LDR pin
    void setup () {
    Serial.begin (9600);
    pinMode (ledpin, OUTPUT); //initialize the LED pin as an output
    pinMode (ledPin_2, OUTPUT); //initialize the second LED as an output
    pinMode (ldrpin, INPUT); //initialize the LDR pin as an input
    }
    void loop (){
    int ldrStatus = analogRead (ldrPin); //read the status of the LDR value
    //check if the LDR status is

  • @tangopies
    @tangopies 7 ปีที่แล้ว +3

    Good tutorial and I find this music very enjoyable :-)

  • @hyuwooshinely4541
    @hyuwooshinely4541 6 ปีที่แล้ว

    any one can answer me? may LED still working even though its not dark

  • @padmanabhanrajesh2366
    @padmanabhanrajesh2366 6 ปีที่แล้ว +1

    Superb bro,works pretty well.

    • @MAMPIism
      @MAMPIism 6 ปีที่แล้ว

      Can we use 470 ohm and 1k ohm resistor instead of the ones mentioned??

  • @nosoychiefkeef3141
    @nosoychiefkeef3141 7 ปีที่แล้ว

    Sorry, what does ldrstatus

  • @khimroy3958
    @khimroy3958 หลายเดือนก่อน

    Nice project 👽👍

  • @basiliosaucedo2513
    @basiliosaucedo2513 5 ปีที่แล้ว

    Tienes la simulación en proteus, o la placas?

  • @RixtronixLAB
    @RixtronixLAB 2 ปีที่แล้ว

    Creative video, thanks for sharing :)

  • @sangitasrivastava172
    @sangitasrivastava172 7 ปีที่แล้ว

    Followed the same steps, but led is always on even when I've focused a torch to the ldr. Please help Mert

    • @heshan_d
      @heshan_d 4 ปีที่แล้ว

      Same happened to me.maybe your code has a fault."

  • @mailmeshr15686
    @mailmeshr15686 5 ปีที่แล้ว +2

    How to upload these values on webserver or webpage automatically every 15 or 30 seconds??

  • @aaronhamilton8997
    @aaronhamilton8997 6 ปีที่แล้ว

    what's the purpose of 10k resistor?

    • @hesamakbari4314
      @hesamakbari4314 5 ปีที่แล้ว

      its apart of the voltage divider circuit

  • @rmznkay
    @rmznkay 6 ปีที่แล้ว

    Hocam ben şerit led i naısl bu sistemde kullanabilirim

  • @swarajprojects78
    @swarajprojects78 7 ปีที่แล้ว

    LDR means

    • @peterbaker345
      @peterbaker345 7 ปีที่แล้ว

      Swaraj Projects light dependant resistor

  • @gabrieloentoro3802
    @gabrieloentoro3802 7 ปีที่แล้ว

    I'm new to arduino. Does analogRead(ldrPin) read the voltage or the current?

    • @hesamakbari4314
      @hesamakbari4314 5 ปีที่แล้ว

      analog pins divide 5 into 1024. and according to the input voltage ,it shows you some results(numbers).

  • @Prompt24
    @Prompt24 7 ปีที่แล้ว

    Please provide schematic in Fritzing, it would be so nice.

  • @mohamedlhachimi2933
    @mohamedlhachimi2933 3 ปีที่แล้ว +1

    It dosen't work for me

  • @JelleRuben
    @JelleRuben 6 ปีที่แล้ว

    Realy I love your video's.

  • @mingyukim22
    @mingyukim22 5 ปีที่แล้ว

    Can I do this without a breadboard?

  • @smoothy2736
    @smoothy2736 6 ปีที่แล้ว

    My led got very dim ...plz help

  • @muburning
    @muburning 7 ปีที่แล้ว

    my LED keeps turning on and off ? what is the problem

    • @colinbouwer5738
      @colinbouwer5738 7 ปีที่แล้ว +1

      It'll probably have some kind of trouble determining if it's dark or light, so then every little light beacon will trigger the LDR. Try to do this in a lighter space.

  • @frolicswithyajat4057
    @frolicswithyajat4057 4 ปีที่แล้ว

    Sorry but its not working for some reason I tried different project before this but still can't do it bruh 😐😐

  • @jack16041
    @jack16041 7 ปีที่แล้ว

    Can i use 221k and 11k Resistors... Rply fast

  • @LudiqGamingBG
    @LudiqGamingBG 4 ปีที่แล้ว

    Good job bro, thank you so much for thi tutorial

  • @yujinbeats9229
    @yujinbeats9229 5 ปีที่แล้ว

    it's the best video thank you so much

  • @gurindersinghmann6241
    @gurindersinghmann6241 5 ปีที่แล้ว

    in my case it is on all time help

  • @ashishsondagar2812
    @ashishsondagar2812 7 ปีที่แล้ว

    not work your code in my project

  • @UserUSER-rx8hu
    @UserUSER-rx8hu 6 ปีที่แล้ว +1

    Thank you for sharing ;0) i got it working. I ❤ you.