Doing multiple timed things with Arduino: Unleash the millis()!

Поділитися
Вставка
  • Опубліковано 8 жов 2024

КОМЕНТАРІ • 207

  • @madscientist1595
    @madscientist1595 3 роки тому +25

    This what you call High Quality Video.

  • @AbdullahKhan-ud9pg
    @AbdullahKhan-ud9pg Місяць тому +1

    Hey ive watched this series from part 1-6 and as someone with no prior coding experience, having to learn arduino and coding in a relatively short period of time for university has been quite challenging. I have an upcoming assessment where millis are crucial to the code so these videos were extremely helpful and I cant thank you enough!

  • @dericktharp5796
    @dericktharp5796 5 років тому +15

    Really like your videos!! My 12 yr. old and I are learning together. My goal is to totally automate a greenhouse using Arduino. This video is exactly what we need.

    • @programmingelectronics
      @programmingelectronics  5 років тому +2

      Sounds like a cool project! It's great you and your son are learning it together.

    • @timwhite7127
      @timwhite7127 9 місяців тому

      I couldn't have said it better.@@programmingelectronics

  • @tonntoh8829
    @tonntoh8829 Місяць тому +1

    Hi, I´d like to say how much great and important is this playlist to understanding millis function. I´ve been learning millis from excellent videos in Portuguese, Spanish and English, actually I've already watch the last two videos from this playlist weeks ago(maybe months), but only now after watch all the videos from this amazing and F. (funny) playlist I can say that I understand millis. Finally I can drink enjoying an amazing sunset knowing I understand the tensile strength of a rubber band, the Mayan calendar, the intimacy between space- time and black holes while my soul floats through ancient music. Thank You!

  • @tunckuyel
    @tunckuyel 4 роки тому +10

    Man this millis series of you saves my life. Thanks a lot.

  • @Mike40M
    @Mike40M 9 місяців тому +1

    Got my first Arduino yesterday. Thought it could be fun to play with a fairly modern system. A lot to learn.
    Made embedded real time multiprocessor systems decades ago. Both hardware and software, Intel 4040, 8051 8085, 80188. and Z80. Assembly & high level languages like PL/M and Modula-2.
    This video made it clear how to structure a small stepper motor project.

  • @nevillesterling2480
    @nevillesterling2480 4 роки тому

    best millis explanation on tintanet understood instanly,, total new to arduino, never done any code, now ive got 6 led running without delay ... thks

  • @ianbertenshaw4350
    @ianbertenshaw4350 3 роки тому +1

    Just what I was looking for ! I needed to slow down the up and down increment of the set rpm programme on an Arduino that uses a touchscreen display without using the despicable delay function , managed to slot this into one of the if statements inside aviod ReadControls function - works a treat and as this programme is interrupt based ( rpm sensor ) the delay is a big no no . 100 milliseconds did the trick .
    Thank you !

  • @blinkanddie3397
    @blinkanddie3397 2 роки тому +1

    Dude I would never have figured this out without you.. thank you

  • @anakie9660
    @anakie9660 2 роки тому +1

    the only person that explained millis the right way...thanks bro

  • @jesus2639
    @jesus2639 5 років тому +15

    You're the hero we need.

  • @redhaali6847
    @redhaali6847 2 роки тому +1

    thank you very much
    That was very helpful and clear
    I was struggling to understand the mills function until I saw your videos
    thanks

    • @programmingelectronics
      @programmingelectronics  2 роки тому +1

      Glad it helped - thanks so much for watching!
      Timing can be confusing as all get out and it's not always easy to think through, let alone code.

  • @johndee7603
    @johndee7603 3 роки тому +3

    This has to be best described video tutorial I have seen on almost any topic, very clear descriptions and well thought out content. First time visiting and cant wait to learn more from this channel.

  • @thebeanberas9564
    @thebeanberas9564 2 роки тому +1

    Thank you so much. I’m working on a walking 4 legged robot and I didn’t want to use the delay function. This video saved my butt.

  • @alejandroperez5368
    @alejandroperez5368 5 років тому +8

    If you have 2 events like on this example, but the first one takes a considerable time to execute, because there are many instructions in between, I guess updating the currentTime variable with the newer mills value wouldn't harm and it's actually recommended to do so before every event.

  • @larrydee8859
    @larrydee8859 5 років тому +3

    Great lessons; Easy to understand!
    (I'm trying to develop multiple debounce sensors for my model railroading, using millis).

    • @programmingelectronics
      @programmingelectronics  5 років тому +2

      Thanks for the note Larry! Have you checkout Geoff Bunzas UA-cam Channel?
      ua-cam.com/channels/KzeYLMEPxWGilqZTNuG0JA.html He uses Arduino in model railroading. Pretty neat stuff.

    • @larrydee8859
      @larrydee8859 5 років тому +2

      @@programmingelectronics
      Thanks so much!
      Thanks for the tip.
      I'll check it out.

  • @robllewellyn
    @robllewellyn 3 роки тому +4

    That was a cool series, I learnt a load of new stuff .. will go and do your full course now I think. Super clear!

  • @mikebarton3218
    @mikebarton3218 5 років тому +3

    Thanks Michael. A very well made tutorial and very helpful to me right now as I am writing my first code for an Arduino (aged 63 !) which will strike a bell every hour exactly. I would like to expand the program to move a stepper motor driven hour hand. A stepper motor tutorial would be great ;-). Best regards, Mike

  • @VasilisKarastergios
    @VasilisKarastergios 5 років тому +3

    Excellent, I really enjoyed the millis series, I hope you can explain state machines in another video using the millis function.

  • @stever3886
    @stever3886 3 роки тому +1

    Great video and love the humor sprinkled in there. In your closing remarks relative to the IF statement……it would be nice to say you set the first previous time to zero….you did say it in the up front part. That is when “I got it”…..like you said walk thru it.

  • @ShiningSilverWolf
    @ShiningSilverWolf 3 роки тому +1

    Thank you for the nicely laid out tutorial. You showed a simple but effective way to plan out what to do, and then carry it out. While I have programmed in other environments before, I’m new to the Arduino, and you have made it easy to pick up the new parts. Cheers!

  • @LevyCarneiro
    @LevyCarneiro 2 роки тому +6

    I saw an example code where someone created an array to hold the millis readings per item you want to manage, and the condition logic was within a function. That way the code was quite minimal. That was in the Doomsday Communicator UA-cam video where he demonstrated building a Lora chat device.

    • @pantac4493
      @pantac4493 Рік тому

      That sounds a lot cleaner, will have to check it out

  • @iggzistentialism8458
    @iggzistentialism8458 4 роки тому +2

    You explained it really well, thank you, it really helped. Thanks for making this and all your videos!

  • @jerkycam
    @jerkycam 2 роки тому +1

    Hey thanks! I didn't think I would need the millis function till I saw your videos about it.
    I'm building a miniature dollhouse that I want to have music and dimmed lights. Using delay would have caused me some problems.

  • @webslinger2011
    @webslinger2011 5 років тому +2

    Awesome! I find your lectures easy to understand. Thanks!

  • @rimapark8081
    @rimapark8081 4 роки тому +1

    Can't explain how much I love these videos ;~; luv u

  • @alphonsesynrem28
    @alphonsesynrem28 4 роки тому +1

    Very nicely done with Millis function. Thank you.

  • @Robin-mi1zj
    @Robin-mi1zj 3 роки тому +1

    hi! thank you so much for this series (btw I think you forgot to add this video to the playlist lol), it's super clear and your explanation is amazing

  • @conradsinsua7415
    @conradsinsua7415 5 років тому +3

    wow , the quality of your videos have improved alot

  • @ivanprasetyo8533
    @ivanprasetyo8533 5 років тому +4

    Absolutely amazing videos, i can do more about millis function by now, thank you for making this videos and keep it up! 😁😁😁

  • @jakethesnake630
    @jakethesnake630 5 років тому +4

    Fantastic video. I've been watching the series and hoping you'd cover timed events using the Millis() function. Very difficult to get your head around that function and you have definitely helped.

    • @programmingelectronics
      @programmingelectronics  5 років тому +1

      Thanks Jake - I appreciate that! I often still scratch my head on using it well.

    • @yashaswikulshreshtha1588
      @yashaswikulshreshtha1588 3 роки тому

      @@programmingelectronics i guess millis still sucks because if you have any delay()s in those timed events your entire timeline will be screwed up. i think to use millis everything has to be perfectly synchronized

    • @programmingelectronics
      @programmingelectronics  3 роки тому

      @@yashaswikulshreshtha1588 I don't believe delay() effects the background count of the millis() function - millis() will keep counting. You might consider some timer libraries that trigger interrupts at specific times...

    • @yashaswikulshreshtha1588
      @yashaswikulshreshtha1588 3 роки тому +1

      @@programmingelectronics I wanted to use millis for timed events but let's say if one event which turns on led has a delay in it then It won't affect millis counts but yes it will act as blocking code for other code pieces sometimes like permanent blockage, you can a event which happens every one second and then an event which happens every 3 seconds, so ofc the first will execute first but if u put delay of 3000 In it then the second event won't happen at all, it never will. I thought maybe I could use millis to run big code blocks having lot of functionalities. At timed intervals

    • @yashaswikulshreshtha1588
      @yashaswikulshreshtha1588 3 роки тому +1

      @@programmingelectronics I would be really grateful if you can make video of classes and objects in Arduino. Probably no has explained good on UA-cam, but if u can make it, it will be on top and it will be helpful to all of us, cuz some of us are trying to learn actual programming concepts using arduino

  • @unknownblueblue
    @unknownblueblue 3 роки тому +1

    Thank you so much this is the best arduino video

  • @wa8eem
    @wa8eem 3 роки тому +1

    Right traight to the point and it works!

  • @jameswise7701
    @jameswise7701 3 роки тому +2

    I like the concept. Just not sure how you handle the rollover of the millis() count? In the reference documentation, millis() will rollover in about 50 days. Seems you should have to check for a rollover condition.

  • @epartsacc
    @epartsacc 2 роки тому +1

    Amazing free content. Very well explained

  • @WayneTheSeine
    @WayneTheSeine 5 років тому +1

    Very high quality instruction. Thanks

  • @martinbolton9483
    @martinbolton9483 3 роки тому +1

    Brilliant tutorial 👏

  • @KJ7JHN
    @KJ7JHN 3 роки тому +1

    This is some great stuff. Thanks!!

  • @cpsanjana
    @cpsanjana 3 роки тому +1

    You are really good. How night celt you explain anybody can understand great job I too started learning don’t be surprised

  • @RhoTrepaan
    @RhoTrepaan 2 роки тому +1

    nice, this what i was looking for.
    intuitively I would have updated the previousTime with the interval, instead of the currentTime...
    previousTime_1 += eventTime_1
    but i expect differences to be minimal, a small (yet slowly increasing) delay in the currentTime version compared to my idea...

  • @0124akash
    @0124akash 8 місяців тому

    This vdo is really helpful for me understand to millis function. Just one question sir am using millis function for one LED blink off time and on time is same. How to change off time only means 1000 Ms is off time and on time is 500 ms. I think you you understand my question sir.

  • @PrometheanConsulting
    @PrometheanConsulting 2 роки тому

    Nice video. I've got a use case that requires both event-driven and timer-driven functions so this was helpful.
    Regarding your timer update, though, I think I would have updated previousTime_1 & previousTime_2 by ADDING their respective intervals back into them rather than updating to the current time. loop() is subject to blocking and there are other reasons that your loop might lag, so your implementation might creep (e.g. 0... 1003... 2003... 3005... 4006... 5007 vs 0... 1003... 2000... 3002... 4001... 5001). Staying truer to your intervals might be important.

  • @MrAce-rs6ju
    @MrAce-rs6ju 5 років тому +4

    You are good teacher *****

  • @DodgyBrothersEngineering
    @DodgyBrothersEngineering 5 років тому +2

    lol how funny is that. I have not long finished writing code very similar to this, except I used a DHT22 and a HC-SR04. I timed three events, temp, humidity and distance (at 5 seconds, 7.5 seconds and 10 seconds). Threw in a millis reading at the end of each loop just to see how often it was going through the loop (and any delay processing). I prefer to update the previous time immediately after the If statement, just in case you are not putting the millis value into a variable like "currentTime" if(millis() - previousTime_1 >= eventInterval_1){ previousTime_1 = millis();

    • @programmingelectronics
      @programmingelectronics  5 років тому +3

      Thanks for sharing that! That makes for more succinct code for sure.

    • @DodgyBrothersEngineering
      @DodgyBrothersEngineering 5 років тому +2

      @@programmingelectronics I knew I was on the right track when I saw what you wrote was very similar to what I had come up with. I initially had down what you wrote, but then changed it at the last minute to just tighten it up a little. Doing three different events one after another, I played with both ways. The way you did it might be slightly more memory friendly, the way I did it will keep the timed events slightly more accurate. If we weren't playing around with milliseconds which increment pretty rapidly, I would have normally done it the way you did it. Thinking about it now, I wonder if I can test the value, and pipe it into the variable in the same action to try cut down the time difference even more? Hmmm another thought just occurred to me. If I put it back to the way you have it, and just reset the currentTime before the start of each event it might be even better still.

    • @DodgyBrothersEngineering
      @DodgyBrothersEngineering 5 років тому +2

      Yep I think just resetting the currentTime is a winner. That way it isn't so time critical when previousTime_x is updated. Although it is good to get it done out of the way and not forgotten.
      currentTime = millis()
      if(currentTime - previousTime_3 >= eventInterval_3){
      previousTime_3 = currentTime;

    • @programmingelectronics
      @programmingelectronics  5 років тому +2

      Great thought - so adding that currentTime = millis() line before each if condition. Thanks again for sharing!

    • @DodgyBrothersEngineering
      @DodgyBrothersEngineering 5 років тому

      @@programmingelectronics Yeah I think that is the way to go... You are capturing the value immediately before you do the If statement, so if it goes into the If (i.e the right amount of time has elapsed), you don't have any lag between the millis at the time of checking the If statement, and the time of storing in the previousTime variable.
      I think resetting the currentTime just before the next If can potentially make the difference of it stepping into the If statement and it not stepping in, on projects that require a very minimal delay between checks. If you only set it once and it takes say 50ms to run through the first If statement, in real time the internal counter has increased by 50ms but you are still using the old value.
      By putting a println of millis at the end of each loop, I noted that the average loop time for a non activity loop was about 7ms, but when it did a sensor check and printed to screen it was around 40-45ms. I have a 10ms Delay between LOW and HIGH Pin to get the reading.
      Since I am using 5, 7.5 and 10 second intervals (just random values) some loops will do nothing, some loops one activity, others two, and some three. On the ones that do three, the initial time set with currentTime = millis() will be way out by the time it enters the third If statement.

  • @danielbernhard1250
    @danielbernhard1250 4 місяці тому

    Nice Video. Do you wanna explain how to use the actuall timer to do such things faster than every millisecond?

  • @michaellove7912
    @michaellove7912 3 роки тому +1

    super helpful, thank you!

  • @bolekcomamilionrolek
    @bolekcomamilionrolek 4 роки тому +1

    Thanks very much!

  • @ThuanDuong-pv3xu
    @ThuanDuong-pv3xu 4 роки тому

    Thank so much for your lensson in my a late night , it is my event !

  • @mbundesmond3696
    @mbundesmond3696 2 дні тому +1

    great explanation

  • @masouddayaghi5923
    @masouddayaghi5923 4 роки тому +1

    Thanks man, amazing video

  • @andrasparanici5491
    @andrasparanici5491 4 роки тому +1

    I also like the title from the videos: "Unleash the millis()!" - Awesome! - not just the content :) Thanks very much!

  • @ipadize
    @ipadize 2 роки тому

    good to know things are:
    making a variable a constant with "const" will prevent accidentally changing the value later in the program and the compiler will generate an error: "error: assignment of read-only variable 'YourVariable' "
    "long" = -2,147,483,648 to 2,147,483,647
    "unsigned long" = 0 to 4,294,967,295
    unsigned just means that the value stored will never be smaller than 0

    • @programmingelectronics
      @programmingelectronics  2 роки тому

      Great notes! I think the numbers on long and unsigned long need switched though in your comment:
      "long" = -2,147,483,648 to 2,147,483,647
      "unsigned long" = 0 to 4,294,967,295

    • @ipadize
      @ipadize 2 роки тому

      @@programmingelectronics yes you are correct i have mistakenly swapped the values ^^

  • @muhammadbilal2000
    @muhammadbilal2000 3 роки тому +1

    Amazingly taught.

  • @ami9675
    @ami9675 Місяць тому

    Thank you very much for explaining the millis() function in such detail.
    I want to use the millis() function as a monostable multivibrator.
    I would like to use a 300msec pulse on one of the outputs when a button is pressed. what program should I write? THX

  • @sledzeppelin
    @sledzeppelin 3 роки тому +1

    There are several event manager and timer libraries for Arduino which are much easier and more powerful than manually writing lots of millis() code.

    • @programmingelectronics
      @programmingelectronics  3 роки тому

      Very true! It's fun to dive into some details. Do you have any specific libraries you would recommend?

  • @GranVlog
    @GranVlog 5 років тому +1

    Thank you. Just what I needed

  • @siddharthsinghrajawat9419
    @siddharthsinghrajawat9419 5 років тому +1

    Sir keep making awesome courses . Soon will take your paid course its awesome . Love from india

  • @TheUnofficialMaker
    @TheUnofficialMaker 2 роки тому +1

    Well done!

  • @carlostph
    @carlostph 5 місяців тому

    Great explanation. I was wondering what happens when milis overflows. Would this stop working around day 49?

  • @ikercos9694
    @ikercos9694 Рік тому +1

    you're a genius

  • @hassambinhassan4446
    @hassambinhassan4446 4 роки тому +1

    really helpful. thanks a lot.

  • @MegaSamsand
    @MegaSamsand 3 роки тому +1

    So good! Thank you. Are you guys still uploading new content?

    • @programmingelectronics
      @programmingelectronics  3 роки тому

      Yes! We have taken a break and been focusing on our member content for quite some time though.

  • @joshuapitong899
    @joshuapitong899 2 роки тому +1

    Reall great.🙌 Thank you.❤

  • @tswoshman0016
    @tswoshman0016 5 років тому +1

    Can you explane how to use millis() for pausing someting ? Like having a little wait loop for ex. 0.5 seconds before making the next without using delay().

  • @sushildamle3449
    @sushildamle3449 Рік тому

    Excellent description. I just wanted to know weather i can use delay function in side the loop without affecting the over all working? Thanks.

  • @Kibinas
    @Kibinas 3 роки тому +1

    Can you explain how this method avoids overflowing of a unsigned long variable?

  • @WayneMcNab
    @WayneMcNab Рік тому

    Love ALL your videos. You mentioned one on interfacing the LDR and Temp sensor but couldn’t find it on your site. Could you supply me a link. Does it also deal with scaling analog readings to displayed units? Thanks so much. Wayne

  • @ruwansamanpriya6085
    @ruwansamanpriya6085 5 років тому +1

    Wonderful as always...

  • @digihz_data
    @digihz_data 5 років тому +1

    Well explained.

  • @nektarioskourakis8331
    @nektarioskourakis8331 2 роки тому

    Great tutorial!!! Two questions 1) the event's happen exactly in one and five seconds?? Instead of const uns... can I put define ...? Thanks

  • @abrahanshahzad1371
    @abrahanshahzad1371 4 роки тому

    9:20 We can write this line as " if(currentTime >= previousTime_1 + eventTime_1_LDR)"
    That way it is easy to understand!

    • @georgemugala4830
      @georgemugala4830 3 роки тому

      You de best my man!!. What a way to explain things

  • @gabrialpetersen914
    @gabrialpetersen914 2 роки тому +1

    Amazing. Subscribed

  • @strangejmaster
    @strangejmaster 4 роки тому +1

    This is an old video you probably won't respond, but if you see this then...
    I need help creating a photogate I know the equations etc. but I don't want to use an Arduino Zero or buy and RTC module, I have a short deadline for a project so I'm not sure if I have time to buy anything else online. I need the photogate to find the time it was broken then do an if statement like
    /=Divided By
    Time Broken Phototrsnisotr = millis() or something to get time between beam is broken and restored like a stopwatch
    Speed = Time Broken Phototransistor / Object Diameter
    if(Speed == 2 Meters Per Second) {Speed up or something}

  • @iffyschannel
    @iffyschannel 3 роки тому

    You saved me thank you!!!!

  • @aliozdemir8002
    @aliozdemir8002 5 років тому +1

    thank you so much for this useful narration!
    Let's say i want to control the digital output with "millis" function. How do i set the exit working time without stopping the loop or other ?

    • @ninek8
      @ninek8 4 роки тому

      What exactly do you want to use and for how long? You can use this same sketch he shows but instead of reading values and printing them, you can just set up a digital pin to become high or low. You'll need all the code without the display part for just one digital pin. I might have said it a weird way so if its confusing, ask again.

  • @jordanlambrecht706
    @jordanlambrecht706 8 місяців тому

    Hi there, your videos helps me a lot since I'm new for this, thank you a lot.
    Quick question about millis(), is it possible to make a wave of leds fading on and off on different LEDs at the same time like for example chroma lighting for keyboards?
    I try the whole week to learn how to create a code for this issue and it's very clear with the delay() function it's impossible to do so. Thank you beforehand!

  • @MikeleRoca-y3k
    @MikeleRoca-y3k 19 днів тому

    Hello. I'm a beginner on arduino. I appreciate all your videos. Got a question. BTW isn't about the topic bu5 about memory or understanding how to better define variables or constants. Using const unsigned long for values of 1000 and 5000 would be like a waste of space on the memory? Can't they be declared like a type int variable?
    Got a couple weeks ago an advice on reddit about the use of delay. Your videos really help people who want to really understand how stuff work!

    • @programmingelectronics
      @programmingelectronics  18 днів тому

      Yes, you are correct.
      I usually make an exception for values that deal with time, that way all the timing variable types are similar. Whatever variable you have tracking time from millis should definitely be a long, otherwise though, you are correct, and int would work fine. Great question.

  • @mourikogoro9709
    @mourikogoro9709 3 роки тому

    very nice tutorial!

  • @chrisridd9423
    @chrisridd9423 Рік тому

    If any of your multiple events take "significant" amounts of time, then your events are going to start drifting away from your intended intervals. To solve that, I would suggest replacing your lines "previousTime_1 = currentTime" etc with "previousTime_1 += eventTime_1_LDR" etc.

  • @adnan_oday
    @adnan_oday 5 років тому +1

    Veru nice i would like to explain how to setup 8relay depending on reading sensor ac voltage as example

  • @lastchance045
    @lastchance045 2 роки тому

    I enjoy your videos but this one has me stumped! I tried to substitute leds as a test as you suggested.
    My timing was led1 once every second and led2 once every 10 seconds. One the first loop it went well BUT following that both leds were on all the time! I tried with delays added and that allowed the leds to blink correctly. My uncertainty is based on the thought that we were to AVOID using delay???
    By the way I am 79. Here is my code
    int led1 = 12;
    int led2 = 11;
    /* Two "independant" timed events */
    const long eventTime_1_led1 = 1000; //in ms
    const long eventTime_2_led2 = 10000; //in ms
    /* When did they start the race? */
    unsigned long previousTime_1 = 0;
    unsigned long previousTime_2 = 0;
    void setup() {
    //initialize digital pin led1 & led2 as an outputs.
    pinMode(led1, OUTPUT);
    pinMode(led2, OUTPUT);
    Serial.begin(9600);
    }
    void loop() {
    /* Updates frequently */
    unsigned long currentTime = millis();
    /* This is my event_1 */
    if ( currentTime - previousTime_1 >= eventTime_1_led1) {
    Serial.println("led1 ");
    digitalWrite (led1, HIGH);
    delay (100);
    digitalWrite (led1, LOW);
    /* Update the timing for the next event*/
    previousTime_1 = currentTime;
    }
    /* This is my event_2 */
    if ( currentTime - previousTime_2 >= eventTime_2_led2) {
    Serial.println("led2: ");
    digitalWrite (led2, HIGH);
    delay (100);
    digitalWrite (led2, LOW);
    delay (200);
    /* Update the timing for the next event*/
    previousTime_2 = currentTime;
    }
    }

  • @ser7ser7i
    @ser7ser7i 3 роки тому

    Thank you.

  • @toastrecon
    @toastrecon 3 роки тому +1

    Awesome! So... you're obviously not guaranteed that your function is getting called "on time". If your other operations aren't too taxing on the processor, you'd be fine. Maybe it'd be interesting to display the millis or the variance to see how far off it was when the function was executed.

  • @qzorn4440
    @qzorn4440 3 роки тому

    this is wonderful, i would like to program a variable time input so when the button-A is pushed for 1 second something will happen or when button-A is pushed for 2 seconds something else will happen, then maybe a 3rd event? thanks a lot...:)

  • @udaraamila7072
    @udaraamila7072 10 місяців тому

    Thank you very much for this tutorial. Theoretically soon after millis() overflows, previousTime variable will be larger than currentTime and the currentTime-previousTime will be a large negative value. Will not be this an issue?

  • @sabbirahmedsumon1023
    @sabbirahmedsumon1023 Рік тому +1

    is there any function called micros? I mean what if I need the values in micro second. Can arduino produce that precise data?

    • @programmingelectronics
      @programmingelectronics  Рік тому

      Yes, there is a micros() function as well, that returns the number of microseconds:
      www.arduino.cc/reference/en/language/functions/time/micros/

  • @Steven_Bennett_YT
    @Steven_Bennett_YT 5 років тому +4

    Is there a potential problem, when millis() rolls over after 49 days, that the sensor updates to serial could stop when the if statement is not true and is there a way to avoid this happening?

    • @programmingelectronics
      @programmingelectronics  5 років тому +2

      Hi Steve, Great question. I am planning on releasing a video about the roll over (at some point...) In the meantime, you can check out this article on stack exchange arduino.stackexchange.com/questions/12587/how-can-i-handle-the-millis-rollover/12588#12588 Hope this helps some!

    • @freddiemortos8519
      @freddiemortos8519 5 років тому

      @@programmingelectronics sir please do a tutorial about this rollover problem of millis in a code. It is easier to understand your explaination than reading a book :)

    • @tharlynnoo
      @tharlynnoo 3 роки тому

      I think with another if statement ; if (previousTime_1 > 49days || previousTime_2 > 49days) {previousTime_1 = 0; previousTime_2 =0}

  • @sriramansrinivasaraghavan5846
    @sriramansrinivasaraghavan5846 2 роки тому

    Please disable arduino ide showing line number for better readability of the code

  • @Schlohmotion
    @Schlohmotion Рік тому

    For everyone worrying about the currentTime rollover after 3 weeks:
    If currentTime is smaller than previousTime, a rollover has happened. Check for this condition and then just set previousTime to zero (basically reset your program this wasy).

    • @andreweastland9634
      @andreweastland9634 11 місяців тому

      The rollover is handled automatically by this code. Do the maths in binary instead of thinking in decimal and you will find it works correctly as is. The key is to subtract the times rather than using addition.

  • @mannnanshaikh7608
    @mannnanshaikh7608 2 роки тому

    sir I have 1 question:
    can we run both tasks at same time means both tasks at per second speed????????

  • @seanlin6862
    @seanlin6862 5 років тому +2

    hi, is there a way to have time events, but when the event happens, let it continue longer.
    For example, I want to turn on LED1 for 21 seconds straight, at the same time, turn on LED2 for 3 seconds then turn off LED2 for 4 seconds, then turn LED2 back on for 3 seconds and turn LED2 off for 4 more seconds, until the 21 seconds is up.

    • @programmingelectronics
      @programmingelectronics  5 років тому +1

      Yes, this is definitely possible. You could potentially break the 2nd LED event into two separate timed events, and set up different event variables for the turning on and turning off of the LED.

  • @mannnanshaikh7608
    @mannnanshaikh7608 2 роки тому

    Can you explain how this method avoids overflowing of a unsigned long variable?
    I'm taking 4 readings from 4 different Distance Sensors and lighting up the LED on the basis of output I gathered from each sensor .But the values which is coming from distance sensors are overflowing the functions .
    I appreciate if you help me out.

  • @BrendanPennySA
    @BrendanPennySA 4 роки тому

    How large in value can the current time variable grow to before it causes issues in the register?
    It is not a wiser choice to utilize a Count++ function that grows on every loop until it reaches the largest required count and then reset the count to zero and start over?

  • @adamwerner8696
    @adamwerner8696 11 місяців тому

    Hi. What about overflow?

  • @mlggeek1812
    @mlggeek1812 5 років тому +1

    great!

  • @arvand26
    @arvand26 3 роки тому

    Hello.. can using currentTime_1=millis();, currentTime_2=millis(); ... etc . because if use many library using millis to. sory for my bad english

  • @tillytony
    @tillytony Рік тому

    Could this be used to call lcd.clear without using delay?

  • @AjaxCrypto
    @AjaxCrypto Рік тому

    So what happens in 49 days when current time rolls over?

  • @timwhite7127
    @timwhite7127 9 місяців тому +1

    Help an idiot out. Is it necessary to assign currentTime to millis() and use currentTime in the conditional statements or can you just use the millis() function itself in the conditionals?

    • @programmingelectronics
      @programmingelectronics  9 місяців тому

      You could use millis in the conditionals. Not an idiotic question at all.

    • @timwhite7127
      @timwhite7127 9 місяців тому

      Thank you very much!@@programmingelectronics 🙂

  • @imamkusnendar
    @imamkusnendar 2 роки тому +1

    Sir, can I use milis() if say, I want to analogRead from my sensor every 16 ms? I have project to read voltage and current sensor from charging capacitor which is happend about 800 ms to fully charge. I want to measure 50 data point (AnalogRead()) from my sensor during 800 ms. I really appreciate your help Sir?

    • @programmingelectronics
      @programmingelectronics  2 роки тому

      Cool project - > Yes, using millis() would allow you to sample something everything 16ms. If you look at the blink without delay example in the Arduino IDE, or watch this series, you should get a thorough idea of how to implement that in code.

    • @imamkusnendar
      @imamkusnendar 2 роки тому

      @@programmingelectronics Thank you Sir. I am still to follow along series videos that you provide in this channel, Sir. very helpful. Many thanks Sir.