Это видео недоступно.
Сожалеем об этом.

How to use millis() function to multitask in arduino code.

Поделиться
HTML-код
  • Опубликовано: 15 окт 2020
  • In this video I am looking at using millis function in the code.
    Describing the advantages it has over using delay function.
    This video is also introducing the concept of multitasking in Arduino code.
    The list of components used:
    - Arduino Nano
    - Couple of LEDs
    - Couple of 220Ohm resistors
    - 2 Potentiometers
    The code can be accessed here:
    create.arduino...
    If you like this content and you want to support me in creating similar videos go to my Patreon webpage
    / mariosideas
    Or
    www.paypal.com...
    Music credits:
    ------------------------------
    Track: Secret To Happiness - JayJen [Audio Library Release]
    Music provided by Audio Library Plus
    Watch: • Secret To Happiness - ...
    Free Download / Stream: alplus.io/secr...
    ------------------------------

Комментарии • 114

  • @CdrCARN
    @CdrCARN Год назад +5

    Brilliant. Thankyou. Just the depth of explanation I was looking for.

    • @marios_ideas
      @marios_ideas  Год назад +2

      Glad it was useful to you. Consider supporting my channel:)

  • @arliewinters2776
    @arliewinters2776 5 месяцев назад +1

    Good presentation....!
    I come from C#... C# has a function called ,"background worker".
    I believe this millis() is just what I need for some of my code in Arduino..

  • @dvshkbm
    @dvshkbm 3 года назад +7

    very well explained, just what I was looking for. Thanks!

  • @altair6218
    @altair6218 3 года назад +2

    much better than the "paid course I've enrolled"

  • @seekertosecrets7618
    @seekertosecrets7618 4 месяца назад

    Well, I was able to understand the video. Now, I have to try and adjust so I can get the right frequency for the first set of LEDs. If it doesn't work, I may have to get a separate board so I have better control of what I want. I'm trying to make a costume and I have get the frequency of the lights just right in accordance to the show.

  • @mtb_zen89
    @mtb_zen89 4 месяца назад

    a simple idea but absolutely KEY to doing complicated projects involving reading multiple sensors with different accuracies (at different sample rates)....
    I was doing it this way before but I like your idea better:
    if (millis() >= time_HS + HS_INTERVAL) { //as soon as time ('millis()') greater than the time of the last heart beat check plus 20 milliseconds run another heartbeat check
    time_HS += HS_INTERVAL; //add (another) 20 milliseconds to time_HS to mark the time of the last heart beat check
    obviously instead of adding the HS interval "manually" to a running total you can just use millis() :p. thanks a lot for the tip!!

  • @michaelperez6811
    @michaelperez6811 3 года назад

    I feel like It can be explain in more detail but I manage to understand and this is what I was looking for

  • @vikasahuja1175
    @vikasahuja1175 3 года назад

    This video has solved many doubts. Thanks You Sir.

  • @SantoshBhagwat1976
    @SantoshBhagwat1976 3 года назад

    Explained in good manner with example 👍👍

  • @hosemorelas2439
    @hosemorelas2439 10 месяцев назад

    Hi Mario. Your filmy are very helpfull and made in very interesting way. Thank You!

    • @marios_ideas
      @marios_ideas  10 месяцев назад

      Cheers:) Consider supporting my channel

  • @bernym4047
    @bernym4047 Год назад

    Very useful project helping me understand programming. I am just starting using and programming arduino. I will download and study the code. Many thanks.

    • @marios_ideas
      @marios_ideas  Год назад +2

      Don't forget to give the video a like:)

  • @plokijij7856
    @plokijij7856 3 года назад +1

    Thanks exactly what I’ve been looking for!

  • @ztiger09
    @ztiger09 2 месяца назад

    Hey there I think you had the right right idea but i noticed there was a slight error with your code when you showed to the example of two leds with separate frequencies. It should look something like this
    unsigned long ms_from_start = 0;
    unsigned long ms_previous_read_LED1 = 0;
    unsigned long LED1_interval= 1000;
    unsigned long ms_previous_read_LED2 = 0;
    unsigned long LED2_interval=250;
    #define LED1 2
    #define LED2 3
    int LED1_state =0;
    int LED2_state =0;
    void setup() {
    // put your setup code here, to run once:
    pinMode(LED1,OUTPUT);
    pinMode(LED2,OUTPUT);
    }
    void loop() {
    // put your main code here, to run repeatedly:
    ms_from_start = millis();
    if (ms_from_start-ms_previous_read_LED1>LED1_interval){
    ms_previous_read_LED1 = ms_from_start;
    if(LED1_state == 0){
    LED1_state =1;
    digitalWrite(LED1,LED1_state);
    } else{
    LED1_state = 0;
    digitalWrite(LED1,LED1_state);
    }
    }
    if (ms_from_start-ms_previous_read_LED2>LED2_interval){
    ms_previous_read_LED2 = ms_from_start;
    if(LED2_state == 0){
    LED2_state =1;
    digitalWrite(LED2,LED2_state);
    } else{
    LED2_state = 0;
    digitalWrite(LED2,LED2_state);
    }
    }
    }

  • @buzzwerd8093
    @buzzwerd8093 Год назад +2

    With millis() you can use unsigned ints to measure intervals up to 65.535 seconds. 8 bit millis only returns 250 different values, the low 8 bits never == 255 but you can use type byte for fast calculating led fades for instance.
    Because the millis() clock low 8 bits takes 250ms to roll over, the next bytes count 1/4 seconds exactly.
    If I want a 1 second repeat I watch the bit that changes every half-second, it is 1 every second for 1/2 second.
    Use in a state machine.
    These cooperative tasking techniques are old. When i was beginning in the 80,s I was reading Creative Computing and Intel design notes from the late 70's... AVR core at 16MHz is about 20x as fast as a C64.
    Count how many times void loop() runs every second and print it. Is it more than 60,000?

  • @karounkapedrokilombo2374
    @karounkapedrokilombo2374 3 года назад

    one new subscriber.. I was using until today.. thank you a lot.. by the way you gained a new subscriber

  • @anokhautomation4453
    @anokhautomation4453 Год назад

    It was a very very useful tutorial 👍

    • @marios_ideas
      @marios_ideas  Год назад +1

      And give the videoas you liked a like:)

  • @agusnoviana
    @agusnoviana Год назад

    Cool, thx for shearing ur knowledgewith us, this tutorial was very useful

    • @marios_ideas
      @marios_ideas  Год назад

      Great that it was useful. Like the video if you enjoyed it.

  • @dytwtilak4607
    @dytwtilak4607 Год назад +1

    thank you a lot.

  • @yousaftoki1599
    @yousaftoki1599 Год назад

    Amazing knowledge sir....you are great..

  • @TheGad999
    @TheGad999 Год назад

    Well explained , Big Thanks Bro .

  • @renderuthis
    @renderuthis 7 месяцев назад

    I wounder what real world applications I could do with this? maniacal robotic applications sounds fun.

  • @0124akash
    @0124akash 10 месяцев назад

    Hello sir, good evening,
    Am creating a program 20Khz PWM signal for pump. It's absolutely working fine, when I wrote 2nd millis function and upload same board but 2nd program is not properly worked. Any solution for this sir ? Am using Arduino UNO board.

  • @markgreco1962
    @markgreco1962 2 года назад

    Oh yea I’m a new subscriber

  • @omkarpasalkar1760
    @omkarpasalkar1760 3 года назад

    Such a gr8 video it is...thank you so much💯

  • @metametax
    @metametax 3 года назад

    Thanks for the video. Very good

  • @uploadideaswithitamar
    @uploadideaswithitamar 2 года назад

    Great. Thank you

  • @republicofvegans712
    @republicofvegans712 Год назад

    What if in the first if statements the start - previous = interval instead of using > ? In that case, would the LED blinking be precise?

  • @gopalakrishnand8696
    @gopalakrishnand8696 Месяц назад

    Good 👍

  • @elzjonz
    @elzjonz 3 года назад

    What if I just want to print something on lcd 16x2 using millis? I want to have alternate of 5secs clock display and 3secs temperature humidity display.. I dont have int LED1_state=0 and just using lcd.print functions. I am having difficulty in the part 5:31 on the video.. And planning to add also temperature controlled switch, to turn on the fan in certain temperature.. Pls help :(

  • @3736june
    @3736june 3 года назад

    Thank so much I am very Enjoy it.

  • @johneagle4384
    @johneagle4384 2 года назад

    Good explanation!

    • @marios_ideas
      @marios_ideas  2 года назад

      Thx:)Give video a like if you enjoyed it. It helps to grow my channel

    • @johneagle4384
      @johneagle4384 2 года назад

      @@marios_ideas Yes, and I've subscribed too!

  • @GorkemYildirim
    @GorkemYildirim 3 года назад

    Thanks a lot, very clear.

  • @damutds
    @damutds 3 года назад

    hi I used your code its work good ,I need a help after reaching the some counter value the both blink need to stop and jump to next set of led or port

    • @marios_ideas
      @marios_ideas  3 года назад

      This video shows you how you can control 2 leds independently of each other. I am not sure what you want to achieve , but by the sound of it you need to introduce additional variable and when certain time passes you send high low to a different pins connected to different set of leds. Should not be difficult to achieve

  • @SHIBRAM4
    @SHIBRAM4 3 года назад

    very well explained. now i have a confusion if the on & off delay time is different in both cycle. like for a 7 sec cycle o/p-A will on for 1st 5sec and off for last 2sec and o/p-B will off for 1st 2sec and will be on for last 5sec. how i can code this using millis() in UNO?

    • @marios_ideas
      @marios_ideas  3 года назад

      You lost me there in that question. Can you explain more clearly

  • @johnconnor6735
    @johnconnor6735 Год назад

    how would we add more leds to the code?

  • @0124akash
    @0124akash Год назад

    Sir, how to make timer ? Specifications are
    20 second on
    60 minutes off
    This on and off in looping.
    On-off switch for timer stop.
    Keypad required for setting timer.
    Parts available
    Arduino UNO
    Keypad
    LCD 16*2
    On-off switch for timer

    • @marios_ideas
      @marios_ideas  Год назад

      I am not going to write the code for you. All the info required to write a timer code you will find in this video. ruclips.net/video/9a5q-xDvZQs/видео.html. Then you need to adjust the code to meet your needs

  • @utsavdaga7590
    @utsavdaga7590 3 года назад

    Best vid

  • @smacks999
    @smacks999 3 года назад

    Great! Ahhh, but can we do that method and change the duty cycle, for instance, on 100ms, off 900ms?

    • @marios_ideas
      @marios_ideas  3 года назад +1

      You can define any duty cycle. Just slight adjustment to the code

  • @polmourgos
    @polmourgos 3 года назад

    Thanks for the video. Very good. I have a question. I want to use a push button and trigger a relay for 100 ms or other value of ms. For the project of one battery spot welder. Do you have any project similar? Thank you for your time.

    • @marios_ideas
      @marios_ideas  3 года назад +1

      I have a project showing how to use a relay. This would give you an idea how this should be done. I think checking my video about interrupts maybe helpful

  • @benbenameur8429
    @benbenameur8429 Год назад

    hello
    Is there a way with the millis() for the LED tourn ON OFF only 5 ones?

    • @marios_ideas
      @marios_ideas  Год назад

      You need to better explain what you want to do

    • @benbenameur8429
      @benbenameur8429 Год назад

      millis() infinite loop . i want led turn on off by millis() but just 5 iteration ?

  • @zulkarnainkarim
    @zulkarnainkarim 2 года назад

    Wondering how to make the led1 blinks only 5 times and then switch off forever until certain activity execute again

    • @marios_ideas
      @marios_ideas  2 года назад

      Check this video of mine. ruclips.net/video/kMtRmj9DS2I/видео.html Maybe it will give you some idea. Wheneve you incounter change of signal at digital pin 2 or 3 you can fire the interrupt that will blink LED 5 tmes

  • @TON-vz3pe
    @TON-vz3pe Год назад

    Is it possible to blink both leds at exactly the same time using two different pins?

    • @marios_ideas
      @marios_ideas  Год назад

      Sure you just duplicate digitalWrite commands. Then you use classic blink sketch without millies

    • @TON-vz3pe
      @TON-vz3pe Год назад

      @@marios_ideas yeah right. I forgot that without delay they both will blink in an instant. The only problem Arduino drives me off is that it can't do real multitasking as it has only one core. Blinking leds might be easy to switch like you did, but doing things like read and write using Esp8266 and parallely running servo, leds, lcd, distance measure etc all of them at the same time will become a nightmare to implement, don't you think?

  • @ianthehunter3532
    @ianthehunter3532 3 года назад +1

    Is there a benefit to declaring pins with #define instead of the standard "int somepin = somenumber;"?

    • @marios_ideas
      @marios_ideas  3 года назад +1

      define - defines a constant that has a fixed value througout the whole runtime of the program. int something declares variable that can change the value during runtime. The pins should really be declared with define

    • @ianthehunter3532
      @ianthehunter3532 3 года назад

      @@marios_ideas what about const int then?

    • @marios_ideas
      @marios_ideas  3 года назад

      With the define, before your program is compiled into machine runnable form, all instances of somepin in your text are replaced with the somenumber. With the const int you are saying "I have an object somepin, which is an integer, and which cannot be changed, and its value is somenumber. The difference is subtle but the both do the same thing

    • @MyNotSoHumbleOpinion
      @MyNotSoHumbleOpinion Год назад +1

      With constant int you are using precious ram and program space, with define not because compiler changes values for you! You can directly put the number of pin in pinMode, but with define you can change pins more easily and quickly during prototyping!

  • @markgreco1962
    @markgreco1962 2 года назад

    Can you give me a hint. How can I add a pause where nothing happens for 40 seconds then the program starts your code.

    • @marios_ideas
      @marios_ideas  Год назад

      To pause for 40 second before the loop function starts you have to put delay(40000); line in setup function

    • @markgreco1962
      @markgreco1962 Год назад

      @@marios_ideas that seemed to easy! THANKS

  • @boopeshkumarprabhakaran
    @boopeshkumarprabhakaran 3 года назад

    this is cool..but i cant define my outputs as im using shift register..soo can i do the millius which shift register

    • @marios_ideas
      @marios_ideas  3 года назад

      What exactly you are trying to achieve. Not sure I understand what your setup is.

  • @aulia6089
    @aulia6089 3 года назад

    Thank you, easy to understand,
    Auto sub...

  • @heshankalpa3909
    @heshankalpa3909 2 года назад

    please i need this code with different on & off time used to two LED..please can you?

    • @marios_ideas
      @marios_ideas  2 года назад

      If you watch my video and try to understand the code you should have no problem adjusting the code for your needs. Please try

  • @cosminboglis5160
    @cosminboglis5160 2 года назад

    thanks!

    • @marios_ideas
      @marios_ideas  2 года назад

      Glad you enjoyed it. Give video a like

  • @Medievalfan94
    @Medievalfan94 2 года назад

    this just saved me another nano for a project... boy, and I thought every task needs another µC... those little bastards are plenty capable

    • @marios_ideas
      @marios_ideas  2 года назад

      Give the video a like If you enjoyed it:)

  • @ChrisHalden007
    @ChrisHalden007 2 года назад

    How do you deal with the situation where millis() overflows and is reset to 0? I mean in a life system that would be ON for more than 50 days.

    • @marios_ideas
      @marios_ideas  2 года назад

      I personally did not encounter this situation as I am a hobbiest. I think any project I use millies I would be able to write some if statements to address the situation where the number is reset. I checked arduino forums and there are plenty of disussions out there

    • @MyNotSoHumbleOpinion
      @MyNotSoHumbleOpinion Год назад

      I use a if statement that triggers the reset of arduino when the millis approach the unsigned long overflow. But for me is not important the (not so) small lag of reboot!

  • @manfromthemist1958
    @manfromthemist1958 3 года назад

    Hi Mario, great vids, and another subscriber,
    I've merged to codes one using buttons and the second to run a sequence of RGB Leds using millis, both functions work beautifuly seperatly but when I want the buttons to turn the code on and run the sequence I have to push and hold the button until it completes or it stalls when I release the button, any ideas why

    • @marios_ideas
      @marios_ideas  3 года назад

      What do you mean the button work without leds. If you have momentary push button it changes the signal on arduino pin only when it is pressed and you need to program in some logic there so I guess this is where your problem is.
      Are you using interrupts with your push button. Check my video about interrupts, and also I have two videos with simple led projects. Two of them if I remember right are using buttons. There is no millis there but I think your problem is with the way you use buttons and that has nothing to do with millis

    • @manfromthemist1958
      @manfromthemist1958 3 года назад

      thanks Mario, I'll check out the vid's@@marios_ideas

  • @nadunchanaka2295
    @nadunchanaka2295 2 года назад

    Hi, Great explanation. But I have a question, when i put same time interval for the both millis functions, is possible to run both functions in same time without lagging?

    • @marios_ideas
      @marios_ideas  2 года назад +1

      If you run both functions at the same time then you need one interval. After which both actions would execute in sequence, right?

    • @nadunchanaka2295
      @nadunchanaka2295 2 года назад

      Thank you for your response. I will try that.

  • @GoatZilla
    @GoatZilla 9 месяцев назад

    the arduino ecosystem needs a scheduler. without it all you can do is wait for your lowest allowable jitter, and that's awful for trying to write low power applications.

  • @metametax
    @metametax 3 года назад

    pls multi step motor ( 4 pcs )

    • @marios_ideas
      @marios_ideas  2 года назад

      I will get to controlling stepper motors but not just yet

    • @metametax
      @metametax 2 года назад

      @@marios_ideas ok

  • @bernym4047
    @bernym4047 Год назад +1

    You could simplify
    ' if (LED2_state==0) LED2_state=1; else LED2_state=0;'
    with
    'LED2 = !LED2'
    and similarly with LED1 😀

    • @marios_ideas
      @marios_ideas  Год назад +1

      Funny you mention this . Obviously you are right. And in my last video about shift register I was revisiting my old code and there I was working with common anode 7 7 segment display which have a reverse logic. 0 lights segment and 1 turns it off. And there I can see that I applied exactly this improvement to the code:) Thanks:)

  • @leviathancorporationfr92
    @leviathancorporationfr92 3 года назад

    This is not multi tasking, it is one task, to be a real multi-tasking, both loop need to be in different function

    • @marios_ideas
      @marios_ideas  3 года назад +1

      You are right . It is not multitasking. But you are wrong about the reason . I could easily rewrite the code So lines reffering to each process are in separate functions. It will be the same thing. For the end user it feels like multitasking, So lets call it software multitasking. The Real multitasking would be on the hardware Level where you configure two tasks to be served by two different cores of the processor. But this would be a little over Arduino Nano’s head:)

    • @leviathancorporationfr92
      @leviathancorporationfr92 3 года назад

      @@marios_ideas i am an OS développer and i know how to do real multi-tasking, I didn't did it but ik, if you want to see my Kernel : github.com/Pokecraft-exe/LeviathanKRNL
      Some functions are in French or with an orthography fault 😂😅I will correct it