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..
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!!
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.
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?
Very useful project helping me understand programming. I am just starting using and programming arduino. I will download and study the code. Many thanks.
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); } } }
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?
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.
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
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.
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
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 :(
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
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
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
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
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!
@@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?
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
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
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!
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
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
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?
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.
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:)
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:)
@@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
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..
Brilliant. Thankyou. Just the depth of explanation I was looking for.
Glad it was useful to you. Consider supporting my channel:)
much better than the "paid course I've enrolled"
I am flattered:)
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!!
very well explained, just what I was looking for. Thanks!
Thank you. Glad it is helpful.
I feel like It can be explain in more detail but I manage to understand and this is what I was looking for
Glad my video was helpful
Explained in good manner with example 👍👍
Thanks:)
This video has solved many doubts. Thanks You Sir.
Glad I could help
Hi Mario. Your filmy are very helpfull and made in very interesting way. Thank You!
Cheers:) Consider supporting my channel
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.
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?
Very useful project helping me understand programming. I am just starting using and programming arduino. I will download and study the code. Many thanks.
Don't forget to give the video a like:)
one new subscriber.. I was using until today.. thank you a lot.. by the way you gained a new subscriber
Thanks:)
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);
}
}
}
Thanks exactly what I’ve been looking for!
how large is your project?
Glad I could help!
Great. Thank you
Amazing knowledge sir....you are great..
Oh ... stop it:)
Good explanation!
Thx:)Give video a like if you enjoyed it. It helps to grow my channel
@@marios_ideas Yes, and I've subscribed too!
Cool, thx for shearing ur knowledgewith us, this tutorial was very useful
Great that it was useful. Like the video if you enjoyed it.
Thanks for the video. Very good
Thank you too
Oh yea I’m a new subscriber
Thanks.
What if in the first if statements the start - previous = interval instead of using > ? In that case, would the LED blinking be precise?
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?
You lost me there in that question. Can you explain more clearly
I cant get this to work in the tinkercad simulator
Great! Ahhh, but can we do that method and change the duty cycle, for instance, on 100ms, off 900ms?
You can define any duty cycle. Just slight adjustment to the code
where in the code do he define pin 3 as output?? i se he uses define but i cant get it to work
Such a gr8 video it is...thank you so much💯
You're welcome
I wounder what real world applications I could do with this? maniacal robotic applications sounds fun.
thank you a lot.
You're welcome:)
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.
Good 👍
Thanks a lot, very clear.
:)
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
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
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.
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
Best vid
Thanks:)
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 :(
how would we add more leds to the code?
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
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
this is cool..but i cant define my outputs as im using shift register..soo can i do the millius which shift register
What exactly you are trying to achieve. Not sure I understand what your setup is.
Is there a benefit to declaring pins with #define instead of the standard "int somepin = somenumber;"?
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
@@marios_ideas what about const int then?
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
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!
Thank so much I am very Enjoy it.
Thanks. Check my other videos:)
Is it possible to blink both leds at exactly the same time using two different pins?
Sure you just duplicate digitalWrite commands. Then you use classic blink sketch without millies
@@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?
Thank you, easy to understand,
Auto sub...
I am glad you find it useful:)
hello
Is there a way with the millis() for the LED tourn ON OFF only 5 ones?
You need to better explain what you want to do
millis() infinite loop . i want led turn on off by millis() but just 5 iteration ?
Can you give me a hint. How can I add a pause where nothing happens for 40 seconds then the program starts your code.
To pause for 40 second before the loop function starts you have to put delay(40000); line in setup function
@@marios_ideas that seemed to easy! THANKS
Wondering how to make the led1 blinks only 5 times and then switch off forever until certain activity execute again
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
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.
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
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!
thanks!
Glad you enjoyed it. Give video a like
please i need this code with different on & off time used to two LED..please can you?
If you watch my video and try to understand the code you should have no problem adjusting the code for your needs. Please try
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
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
thanks Mario, I'll check out the vid's@@marios_ideas
this just saved me another nano for a project... boy, and I thought every task needs another µC... those little bastards are plenty capable
Give the video a like If you enjoyed it:)
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?
If you run both functions at the same time then you need one interval. After which both actions would execute in sequence, right?
Thank you for your response. I will try that.
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.
pls multi step motor ( 4 pcs )
I will get to controlling stepper motors but not just yet
@@marios_ideas ok
You could simplify
' if (LED2_state==0) LED2_state=1; else LED2_state=0;'
with
'LED2 = !LED2'
and similarly with LED1 😀
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:)
This is not multi tasking, it is one task, to be a real multi-tasking, both loop need to be in different function
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:)
@@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
Well explained , Big Thanks Bro .
Thanks.